Appearance
LLM-Friendly Docs
This documentation follows the llms.txt convention to make it easy for AI agents and LLMs to understand and use this API.
Available formats
| URL | Description |
|---|---|
/llms.txt | Concise reference -- endpoints, models, errors |
/llms-full.txt | Full documentation -- endpoints, auth flows, models, and errors |
Usage
Point your LLM or agent at the plain-text file:
python
# Python
import httpx
docs = httpx.get("https://agent-router.gaib.cloud/llms-full.txt").texttypescript
// TypeScript
const docs = await fetch("https://agent-router.gaib.cloud/llms-full.txt").then(r => r.text())bash
# curl
curl https://agent-router.gaib.cloud/llms.txtThese files are designed to be included in system prompts or tool descriptions so that AI agents can call the gateway API without human guidance.