Make thinking false by default

This commit is contained in:
Yiorgis Gozadinos 2025-11-25 12:35:38 +02:00
parent a9701616c8
commit ba4dddeeaf
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -93,7 +93,7 @@ research:
model:
provider: "" # Empty to use qa settings
name: ""
enable_thinking: true
enable_thinking: false
max_iterations: 3
confidence_threshold: 0.8
max_concurrency: 1

View file

@ -31,7 +31,7 @@ research:
model:
provider: "" # Empty to use qa settings
name: "" # Empty to use qa model
enable_thinking: true
enable_thinking: false
max_iterations: 3
confidence_threshold: 0.8
max_concurrency: 1

View file

@ -75,7 +75,7 @@ class ResearchConfig(BaseModel):
default_factory=lambda: ModelConfig(
provider="ollama",
name="gpt-oss",
enable_thinking=True,
enable_thinking=False,
)
)
max_iterations: int = 3