Add an AI Agent to your FastAPI application. The agent knows how to interact with your endpoints within a chat interface.
Project description
💬 Talk to your FastAPI app like it's a teammate.
FastAPI Agent integrates an AI Agent into your FastAPI application.
It allows you to interact with your API endpoints through a chat interface or directly via the /agent/query route using an LLM (Large Language Model).
⚙️ Installation:
To install the package, run:
pip install fastapi_agent
🧪 Usage:
To use the FastAPI Agent, initialize it with your FastAPI app and AI model.
You can use the default agent routes or add custom ones to your FastAPI application to interact with the agent via a chat interface or API endpoint.
Here is a simple example of how to use the FastAPI Agent with your FastAPI application:
.env
OPENAI_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
app.py
import uvicorn
from dotenv import load_dotenv
from fastapi import FastAPI
from fastapi_agent import FastAPIAgent
# load OPENAI_API_KEY from .env
load_dotenv()
# set your FastAPI app
app = FastAPI(
title="YOUR APP TITLE",
version="0.1.0",
description="some app description",
)
# add routes
@app.get("/")
async def root():
"""Welcome endpoint that returns basic API information"""
return {"message": "Welcome to Test API"}
# add the FastAPI Agent + default routes
FastAPIAgent(
app,
model="openai:gpt-4.1-mini",
base_url="http://localhost:8000",
include_router=True,
)
uvicorn.run(app, host="0.0.0.0", port=8000)
🧭 Default Routes
FastAPI Agent provides two default routes:
/agent/query– Ask anything about your API using natural language. 🧠
curl -k -X POST "http://127.0.0.1:8000/agent/query" \
-H "Content-Type: application/json" \
-d '{"query": "show all endpoints"}'
/agent/chat– A simple web-based chat interface to interact with your API. 💬
💡 You can also add custom routes using agent.chat() method - Example
🧩 Additional Arguments:
If your application routes use Depends (e.g., an API key), you can pass a dictionary of headers.
The agent will use them to call your routes and apply the same dependencies to the /agent/query route.
api_key = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
FastAPIAgent(
app,
model="openai:gpt-4.1-mini",
base_url="https://localhost:8000",
depends={"api-key": api_key},
include_router=True,
)
You can control which routes the agent can access using the ignore_routes or allow_routes arguments:
- Use
ignore_routesto exclude specific routes from being accessible to the agent. - Use
allow_routesto restrict the agent to only the specified routes.
Both
ignore_routesandallow_routesmust be a list of strings in the format: ["METHOD:/path"]
FastAPIAgent(
app,
model="openai:gpt-4.1-mini",
base_url="https://localhost:8000",
ignore_routes=["DELETE:/users/{user_id}"],
include_router=True,
)
📁 Additional Examples:
Check out our examples for ai_agent,
fastapi_discovery,
and fastapi_agent.
All examples are available here.
If you're using Depends in your routes, make sure to pass the required headers when calling the /agent/query endpoint like the examples below:
python
import requests
res = requests.post(
"http://127.0.0.1:8000/agent/query",
json={"query": "show all endpoints"},
headers={"depends": '{"api-key": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}'}
)
print(res.json())
curl
curl -k -X POST "http://127.0.0.1:8000/agent/query" \
-H 'depends: {"api-key": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"}' \
-H "Content-Type: application/json" \
-d '{"query": "show all endpoints"}'
📜 License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_agent-0.1.8.tar.gz.
File metadata
- Download URL: fastapi_agent-0.1.8.tar.gz
- Upload date:
- Size: 361.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0410caaebb66b637ba10404bed69c6a49ae5f180cf042ddb18675199b56a77f
|
|
| MD5 |
10400fd490bf34355b1972c6ce3121e9
|
|
| BLAKE2b-256 |
b880ec51b006ba88423599e1d3bf5d2c6a1fa400930b4c90c95c4d5ff85b96c5
|
File details
Details for the file fastapi_agent-0.1.8-py3-none-any.whl.
File metadata
- Download URL: fastapi_agent-0.1.8-py3-none-any.whl
- Upload date:
- Size: 20.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ddea005e04205205c56480a089c2dc040c6f2984a0600c8533793bbfce81c31
|
|
| MD5 |
7c6d5e73fc59edfe9f835208d147497d
|
|
| BLAKE2b-256 |
a948cc903b938874d340a7467c611fec5b60efc522a9d3a2e24be793b745b25d
|