Resources
llms.txt
LLM-friendly plain-text docs for AI agents.
This documentation follows the llms.txt convention to make it easy for AI agents and LLMs to consume.
Available formats
| URL | Description |
|---|---|
/llms.txt | Concise index of all pages |
/llms-full.txt | Full documentation in one file |
/openapi.yaml | Complete OpenAPI 3.1 API spec — endpoints, schemas, auth |
Every docs page is also available as Markdown by appending .md to its URL, or via the "Copy Markdown" button on the page.
Building an agent that calls the gateway? See For AI Agents for the drop-in base URL and a tool-use walkthrough.
Usage
Point your LLM or agent at the plain-text file:
const docs = await fetch('https://gaib.ai/llms-full.txt').then(r => r.text())import httpx
docs = httpx.get("https://gaib.ai/llms-full.txt").textcurl https://gaib.ai/llms.txtThese files are designed to be included in system prompts or tool descriptions so AI agents can call the gateway API without human guidance.