Skip to content

Commit f59ffb5

Browse files
DOC-5877 added 'hidden' AI resource page plus tile on docs home page
1 parent 3f74bb4 commit f59ffb5

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

content/ai-agent-resources.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: AI Agent Resources
3+
description: Learn how to develop with Redis as an AI agent
4+
linkTitle: AI Agent Resources
5+
---
6+
7+
## `llms.txt` index of documentation
8+
9+
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.
10+
11+
## Markdown documentation format
12+
13+
All documentation pages are available in Markdown format via the same URL as
14+
the main doc page but with `index.html.md` added. For example, the Markdown version of
15+
this page is available at
16+
[ai-agent-resources/index.html.md](https://redis.io/docs/latest/develop/ai-agent-resources/index.html.md).
17+
18+
19+
## API references
20+
21+
API references are available for the following client libraries:
22+
23+
- [redis-py](https://redis.readthedocs.io/en/stable/commands.html)
24+
- [jedis](https://javadoc.io/doc/redis.clients/jedis/latest/index.html)
25+
- [lettuce](https://lettuce.io/core/release/reference/index.html)
26+
- [go-redis](https://pkg.go.dev/github.com/redis/go-redis/v9)
27+
- [redis-rs](https://docs.rs/redis/latest/redis/)

layouts/home.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,16 @@ <h2 class="text-5xl font-medium text-white" id="operate">Deploy</h2>
164164
(dict "Text" "Redis Insight" "URL" "./develop/tools/insight/")
165165
(dict "Text" "Redis for VSCode" "URL" "./develop/tools/redis-for-vscode/")
166166
) ) }}
167-
167+
{{ partial "docs-section.html" (dict
168+
"Title" "Resources for AI agents"
169+
"Description" "Learn more about Redis documentation features that support AI agents"
170+
"ButtonLink" "https://redis.io/llms.txt"
171+
"ButtonLabel" "Main `llms.txt` index for doc structure"
172+
"LinksLeft" (slice
173+
(dict "Text" "AI Agent Resources" "URL" "./ai-agent-resources")
174+
(dict "Text" "Example doc page in Markdown format" "URL" "./develop/index.html.md")
175+
)
176+
) }}
168177
</div>
169178
</div>
170179
</div>

0 commit comments

Comments
 (0)