DocBuddy

AI-Enhanced API Documentation

Load any OpenAPI schema and explore it with Chat, Workflow, and Agent assistance β€” powered by your local LLM.

Enter a direct openapi.json URL, or paste a /docs page URL and DocBuddy will auto-detect the schema.

πŸš€ Run Locally with CLI

Launch this page locally in order to connect to local LLMs (Ollama, LM Studio, vLLM).

pip install docbuddy Click to copy
docbuddy Click to copy

Opens at the address shown in the terminal (default port 8008)

Python Plugin

Replace your FastAPI /docs page with DocBuddy β€” get AI chat, workflows, and agent tools directly alongside your API explorer.

from fastapi import FastAPI from docbuddy import setup_docs app = FastAPI() setup_docs(app) # replaces default /docs
πŸ€– DocBuddy