--- title: AI Agent Resources description: Learn how to develop with Redis as an AI agent linkTitle: AI Agent Resources --- ## `llms.txt` index of documentation Redis provides a comprehensive index of all documentation in Markdown format at [llms.txt](https://redis.io/llms.txt). This index is specifically designed for AI agents to discover available documentation. ## Markdown documentation format All documentation pages are available in Markdown format via the same URL as the main doc page but with `index.html.md` added. For example, the Markdown version of this page is available at [ai-agent-resources/index.html.md](https://redis.io/docs/latest/ai-agent-resources/index.html.md). ## API references API references are available for the following client libraries: - [redis-py](https://redis.readthedocs.io/en/stable/commands.html) - [jedis](https://javadoc.io/doc/redis.clients/jedis/latest/index.html) - [lettuce](https://lettuce.io/core/release/reference/index.html) - [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9) - [redis-rs](https://docs.rs/redis/latest/redis/) ## Data type comparisons See [Compare data types]({{< relref "/develop/data-types/compare-data-types" >}}) for advice on which of the general-purpose data types is best for common tasks. ## Error handling See [Error handling]({{< relref "/develop/clients/error-handling" >}}) for a guide to handling errors in client libraries.