-
Notifications
You must be signed in to change notification settings - Fork 368
Expand file tree
/
Copy pathrag.yaml
More file actions
33 lines (30 loc) · 970 Bytes
/
rag.yaml
File metadata and controls
33 lines (30 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
agents:
root:
model: gpt-5-minimal
description: assistant that can search a knowledge base
instruction: |
You are a helpful assistant. You have access to a knowledge base you
can use when it makes sense to do so, based on the user's question.
If you receive sources from the knowledge base, always include them as
a markdown list of links to local files at the very end of your response.
welcome_message: Ask me anything about Blorks.
toolsets:
- type: rag
ref: blork_knowledge_base
models:
gpt-5-minimal:
provider: openai
model: gpt-5
thinking_budget: minimal
rag:
blork_knowledge_base:
tool:
description: documents about the blorks
docs:
- ./rag/docs
- ./rag/blork_field_guide.txt
strategies:
- type: chunked-embeddings
embedding_model: openai/text-embedding-3-small
database: ./rag/chunked_embeddings.db
vector_dimensions: 1536