-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml
More file actions
40 lines (33 loc) · 803 Bytes
/
config.yaml
File metadata and controls
40 lines (33 loc) · 803 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
# config.yaml
llm:
default_model: "gemini-2.5-flash"
default_client: "gemini"
default_prompt: "gemini_prompt"
pipeline:
retriever: "hybrid"
coref_model: "f-coref-base"
coref_device: null
database:
sqlite_path: "data/sources.db"
chroma_mode: "local"
chroma_path: "chroma_db"
chroma_host: "localhost"
chroma_port: 8000
vectordb:
collection_name: "wikipedia_knowledge"
screening_collection_name: "screening_knowledge"
verified_facts_collection_name: "verified_facts"
embedding_model: "intfloat/e5-base-v2"
retriever:
hybrid:
vector_search_threshold: 0.2
serper:
top_k: 10
webapp:
host: "0.0.0.0"
port: 2024
debug: true
secret_key: "failsafe_super_secret_key"
celery:
broker_url: "redis://redis:6379/0"
backend_url: "redis://redis:6379/0"