This repository contains a lightweight **[`Quart`](https://quart.palletsprojects.com/en/latest/) backend server** that exposes API endpoints for interacting with different AI sub-agents.
This repository contains a lightweight **[`FastAPI`](https://fastapi.tiangolo.com/)** backend server that exposes API endpoints for interacting with different AI sub-agents.
---
@@ -96,7 +96,7 @@ Follow these steps to set up and run the app locally.
Start the backend server using:
```
python app.py
python -m ai_agent.app
```
The server will start at:
@@ -138,10 +138,9 @@ To add new functionality:
Example:
```
from ai_agent.routes.my_agent import register_my_agent_routes
register_my_agent_routes(app)
from ai_agent.routes.my_agent import router as my_agent_router