Documentation Index
Fetch the complete documentation index at: https://docs.nex-t1.ai/llms.txt
Use this file to discover all available pages before exploring further.
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.