We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gptme-rag index
1 parent 14357b1 commit 90ba8c5Copy full SHA for 90ba8c5
README.md
@@ -53,7 +53,7 @@ RAG systems improve AI responses by retrieving and incorporating relevant inform
53
pipx install gptme-rag # or: pip install gptme-rag
54
55
# Index your documents
56
-gptme-rag index ./docs --pattern "**/*.md"
+gptme-rag index **.md
57
58
# Search
59
gptme-rag search "What is the architecture of the system?"
@@ -72,10 +72,10 @@ poetry install
72
73
```bash
74
# Index markdown files in a directory
75
-gptme-rag index /path/to/documents --pattern "**/*.md"
+gptme-rag index *.md
76
77
# Index with custom persist directory
78
-gptme-rag index /path/to/documents --persist-dir ./index
+gptme-rag index *.md --persist-dir ./index
79
```
80
81
### Searching
0 commit comments