Make thinking false by default
This commit is contained in:
parent
a9701616c8
commit
ba4dddeeaf
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue