Skip to content

Commit c334384

Browse files
authored
docs(advanced): rename LLMs title
1 parent 080c8d2 commit c334384

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

docs/content/docs/7.advanced/7.llms.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
2-
title: AI-ready content files(`llms.txt`)
3-
description: Learn how to generate AI-ready content files using Nuxt Content and the Nuxt LLMs module.
2+
title: LLMs Integration
3+
description: Learn how to generate AI-ready content files using Nuxt Content and
4+
the Nuxt LLMs module.
45
---
56

67
# LLMs Integration
@@ -35,7 +36,6 @@ That's it!
3536

3637
Nuxt Content will automatically detect Nuxt LLMs module and will create a section to each `page` collection.
3738

38-
3939
## Custom Sections
4040

4141
The Content module enhances the LLMs module by adding two key options to control content generation:
@@ -47,7 +47,6 @@ When generating content, the module uses these options to fetch and process your
4747

4848
All you need is to add your custom sections to the `llms.sections` array and define the `contentCollection` and `contentFilters` for each section.
4949

50-
5150
```ts
5251
// nuxt.config.ts
5352
export default defineNuxtConfig({
@@ -72,13 +71,15 @@ export default defineNuxtConfig({
7271
},
7372
})
7473
```
74+
7575
::note
7676
If there is no section defined with the `contentCollection` option, the module will add `page` collections to the LLMs module.
7777
::
7878

7979
### Content Filtering
8080

8181
You can use `contentFilters` to precisely control which content is included. Each filter consists of:
82+
8283
- `field`: The content property to check
8384
- `operator`: Comparison operator (`=`, `<>`, `>`, `<`, `LIKE`, `IN`, `NOT IN`, `IS NULL`, `IS NOT NULL`, etc.)
8485
- `value`: The value to compare against

0 commit comments

Comments
 (0)