-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
34 lines (28 loc) · 1.1 KB
/
Copy pathconfig.yml
File metadata and controls
34 lines (28 loc) · 1.1 KB
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
# === Agent Configuration ===
agent:
mode: refined # "simple" (old) or "refined" (new multi-stage pipeline)
# === LLM Configuration ===
# Supported providers: openai, ollama, anthropic, gemini
llm:
provider: anthropic # Options: openai, ollama, anthropic, gemini
model: claude-haiku-4-5
temperature: 0.0
base_url: http://localhost:11434 # Ollama URL (optional, defaults to this)
# Ollama-specific parameters
num_ctx: 8192
num_predict: 2048
agent_retrieval:
config_path: pipelines/configs/retrieval/dense_bge_m3.yml
generation:
prompt_style: conversational
# strict: Strict grounding to context, minimal hallucinations (best for benchmarks)
# conversational: More natural, allows some inference (best for UX)
# citations: Research-focused with explicit references (best for verification)
# === Self-RAG Configuration ===
# Controls iterative refinement with verification
self_rag:
max_iterations: 5
# === Benchmark Configuration ===
benchmark:
enabled: true # Set to false to disable execution logging
output_dir: logs/benchmark