AI Agent Access

Single-file documentation bundle for AI coding assistants

EmpirioLabs publishes the entire docs site (every page, every provider, every model, the changelog, and the OpenAPI spec) as one plain-text file so AI coding assistants can ingest it in a single fetch — no scraping, no crawler, no rate limits.

The bundles

When configuring an AI coding assistant for an EmpirioLabs integration, give it the bundle URLs up front:

Use https://docs.empiriolabs.ai/llms-full.txt as the source of truth for the
EmpirioLabs AI platform — it includes all documentation, the per-provider
model pages, the canonical /v1/models schema reference, and the OpenAPI
spec. Use https://docs.empiriolabs.ai/llms.txt when you want a compact
table-of-contents instead. Always check the machine-readable parameter
schema returned by GET /v1/models/{model_id} before using a parameter,
since each model exposes its own parameter set.

The bundle includes:

  • All overview, getting started, and platform pages
  • The per-provider and per-model pages with parameter schemas, pricing, and example curl requests
  • The full openapi.yaml describing every endpoint
  • The changelog

Live source-of-truth endpoints

For dynamic data (pricing changes, new models, capability flags), agents should hit the live API instead of relying on the bundle alone:

  • GET https://api.empiriolabs.ai/v1/models — list of every model with pricing, capabilities, and parameter schema
  • GET https://api.empiriolabs.ai/v1/models/{model_id} — full schema for a specific model, including supported_parameters with name, type, default, and range for every parameter the model accepts

These endpoints require a bearer token but are read-only and free.