Token Kiosk
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

URLDescription
/llms.txtConcise index of all pages
/llms-full.txtFull documentation in one file
/openapi.yamlComplete 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").text
curl https://gaib.ai/llms.txt

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

On this page