LLM Docs
AIOZ Storage provides machine-readable documentation endpoints for coding assistants, AI agents, and retrieval workflows. Use these endpoints when you want an AI tool to ingest AIOZ Storage context directly instead of navigating the full documentation UI.
This page is intended for developers, agent builders, and teams integrating AIOZ Storage into AI-assisted workflows.
What these endpoints contain
These endpoints provide machine-readable versions of the AIOZ Storage documentation for AI-assisted workflows.
llms.txtcontains a lightweight index of the documentation structure, with links to relevant sections.llms-full.txtcontains the full concatenated documentation corpus for broader technical context.- These files are intended for retrieval, summarization, and coding assistance workflows rather than regular docs browsing.
Which one should I use?
- Use
llms.txtwhen you need a lightweight documentation index for discovery, navigation, or limited-context prompts. - Use
llms-full.txtwhen you need broader implementation context across concepts, SDKs, APIs, and platform behavior. - As a general rule, start with
llms.txtfor discovery and fetchllms-full.txtonly when the task requires deeper technical context.
Lightweight index for discovery
Use the /llms.txt endpoint to fetch a summarized index of the AIOZ Storage documentation. This is useful for high-level discovery and quick routing to relevant sections.
curl https://aiozstorage.network/docs/llms.txtFull corpus for deep context
Use the /llms-full.txt endpoint to fetch the complete concatenated AIOZ Storage documentation. This is useful when your AI assistant needs broader implementation context across the full docs set.
curl https://aiozstorage.network/docs/llms-full.txtCommon use cases
- Feeding an AI coding assistant with AIOZ Storage context: load
llms.txtorllms-full.txtinto your assistant's context window so it can answer AIOZ Storage questions accurately. - Building a lightweight retrieval layer for internal support bots: use
llms.txtas an index to route queries, then fetch specific sections as needed. - Loading the full docs corpus for deeper implementation help: feed
llms-full.txtinto a RAG pipeline or long-context model for comprehensive technical assistance.
Operational guidance
Start with
llms.txtfor discovery. Fetchllms-full.txtonly when the task requires broader implementation context.
Important notes
- These endpoints are generated from the current published AIOZ Storage documentation.
- For UI-specific details, edge cases, or recent changes, always verify against the canonical docs pages (opens in a new tab).
- Use
llms.txtfor lightweight retrieval andllms-full.txtonly when broader context is required. - The published documentation pages remain the source of truth for implementation details.