-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
40 lines (34 loc) · 829 Bytes
/
config.example.yaml
File metadata and controls
40 lines (34 loc) · 829 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
34
35
36
37
38
39
40
# RAG Vector Knowledge Base - Configuration
# Copy this file to config.yaml and fill in your API keys.
# LLM Configuration
llm:
provider: deepseek
model: deepseek-chat # or deepseek-reasoner
api_key: "YOUR_API_KEY_HERE"
# ChromaDB Configuration
chroma:
host: localhost
port: 8000
collection: project_plans
persist_path: data/chroma
# Embedding Configuration
embedding:
provider: siliconflow # Free tier available
model: Qwen/Qwen2.5-7B-Instruct
api_key: "YOUR_API_KEY_HERE"
# Ingestion Configuration
ingest:
max_chunk_size: 300
min_chunk_size: 10
table_row_split: true
extract_numeric: true
# Retrieval Configuration
retrieval:
top_k: 5
module_bonus: 0.2
rerank_enabled: true
# Wiki Q&A Configuration
wiki:
max_context_tokens: 2000
max_tokens: 1024
temperature: 0.3