Skip to content

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

URLDescription
/llms.txtConcise reference -- endpoints, models, errors
/llms-full.txtFull 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").text
typescript
// 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.txt

These files are designed to be included in system prompts or tool descriptions so that AI agents can call the gateway API without human guidance.

Released under the MIT License.