> ## Documentation Index
> Fetch the complete documentation index at: https://docs.img-processing.com/llms.txt
> Use this file to discover all available pages before exploring further.

# llms.txt

> Make docs content easier for LLMs to read and index

## Introduction

The [llms.txt file](https://llmstxt.org) is an industry standard that helps LLMs index content more efficiently, similar to how a sitemap helps search engines.

IMG Processing hosts an `llms.txt` file at the root of the docs that lists all available pages
in the documentation. AI tools can use this file to understand the documentation structure and find relevant
content to user prompts.

View the `llms.txt` by appending `/llms.txt` to the documentation site's URL.

```text theme={null}
https://docs.img-processing.com/llms.txt
```

<Card horizontal={true} href={'https://docs.img-processing.com/llms.txt'} icon={'file-lines'} title="Check out the llms.txt">
  The llms.txt file for this site is automatically generated and updated.
</Card>

### llms.txt structure

An `llms.txt` file is a plain Markdown file that contains:

* **Site title** as an H1 heading. This is the only required section of an `llms.txt`.
* **Structured content sections** with descriptive links to key pages.

```mdx Example llms.txt theme={null}
# IMG Processing

## Docs

- [AI Agents](https://docs.img-processing.com/ai-toolkit/agents.md): Enable your AI agents to send and manage images with IMG Processing API.
- [Authentication](https://docs.img-processing.com/api-reference/authentication.md): Learn how to authenticate your requests
- [Changelog](https://docs.img-processing.com/api-reference/changelog.md): The IMG Processing API changelog.
- [API Endpoints](https://docs.img-processing.com/api-reference/endpoints.md): Structure of the requests and responses for the API
```

This structured approach allows LLMs to quickly process the documentation hierarchy and locate relevant content for user queries, improving the accuracy and speed of AI-assisted documentation searches.

### llms-full.txt

The `llms-full.txt` file combines the entire documentation site into a single file as context for AI tools and is indexed by LLM traffic.
You can paste a single URL as context for AI tools for more relevant and accurate responses.

IMG Processing hosts an `llms-full.txt` file at the root of the docs.
View the `llms-full.txt` by appending `/llms-full.txt` to the documentation URL.

```text theme={null}
https://docs.img-processing.com/llms-full.txt
```

<Card horizontal={true} href={'https://docs.img-processing.com/llms-full.txt'} icon={'file-lines'} title="Check out the llms-full.txt">
  The llms-full.txt file for this site is automatically generated and updated.
</Card>
