Integration Guide
For Users (API Consumers)
- Obtain credentials and create a session (see Get Started).
- Choose your flow:
- Chat: /api/v1/chatbot/chator/chat/stream
- Research: /api/v1/multi-agent/research/preview
- Trading: /api/v1/multi-agent/preview→ quote → risk → execute (EVM)
 
- Chat: 
- Rate limits apply; handle HTTP 429 with backoff.
- Validate responses and timeouts; endpoints return structured JSON per Pydantic schemas.
For Developers (Extending)
Agent & tools- Add tools in app/core/langgraph/tools/and include them intools.
- Inspect the LangGraphAgentinapp/core/langgraph/graph.pyfor tool binding and message flow.
- Extend team graphs under app/core/langgraph/multi/teams/*.
- Routing via SupervisorRouterinapp/core/langgraph/multi/supervisor.py.
- Implement adapters in app/core/langgraph/tools/mcpand helpers inapp/core/integrations/mcp.
- Configure via env vars; add typed helper endpoints for common operations.
- app/core/config.pyhandles env detection and settings. Prefer- .env.developmentetc. and never commit secrets.
- Prometheus /metrics, health/health, and Langfuse tracing viaLANGFUSE_*env vars.
- Makefile + Docker Compose for local stack; Railway and Kubernetes examples in repo docs.
Gate dev‑only endpoints (like 
/quote/evm/pseudo) behind flags in production. Enforce allowlists and add receipt verification.