Skip to content

Commit 9bb4f8d

Browse files
committed
Update llms.mdx
1 parent 305f49c commit 9bb4f8d

File tree

1 file changed

+26
-6
lines changed

1 file changed

+26
-6
lines changed

content/docs/resources/llms.mdx

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ The `llms-full.txt` format returns all documentation pages as a single text docu
3232
curl https://docs.wavs.xyz/llms-full.txt
3333
```
3434

35-
Returns all documentation pages as a single text document.
36-
37-
3835
## Markdown Format
3936

4037
Get any page as standard Markdown by appending `.md` to its URL.
@@ -48,8 +45,31 @@ Examples:
4845
- `/tutorial/1-overview.md` - Tutorial introduction as Markdown
4946
- `/handbook/service.md` - Service handbook as Markdown
5047

51-
## Crate docs
48+
## WAVS foundry template
49+
50+
An llm-ingestible full markdown version of the [WAVS foundry template](https://github.com/Lay3rLabs/wavs-foundry-template)is available at [https://docs.wavs.xyz/wavs-foundry-template.md](https://docs.wavs.xyz/wavs-foundry-template.md).
5251

53-
## WAVS foundry template llm docs
52+
```
53+
curl https://docs.wavs.xyz/wavs-foundry-template.md
54+
```
55+
56+
## WAVS-WASI-utils crate docs
57+
58+
An llm-ingestible full markdown version of the WAVS-WASI-Utils docs is available at [https://docs.wavs.xyz/wavs-wasi-utils.md](https://docs.wavs.xyz/wavs-wasi-utils.md).
59+
60+
```
61+
curl https://docs.wavs.xyz/wavs-wasi-utils.md
62+
```
63+
64+
## Search API
65+
66+
Search the documentation programmatically using the search API endpoint.
67+
68+
```
69+
curl "https://docs.wavs.xyz/api/search-custom?q=your_query"
70+
```
71+
72+
Examples:
73+
- Search for "component": `https://docs.wavs.xyz/api/search-custom?q=component`
5474

55-
An llm-ingestible full markdown version of the [WAVS foundry template](https://github.com/Lay3rLabs/wavs-foundry-template) is available
75+
The search API returns JSON results with page titles, URLs, and content snippets.

0 commit comments

Comments
 (0)