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:
|
model:
|
||||||
provider: "" # Empty to use qa settings
|
provider: "" # Empty to use qa settings
|
||||||
name: ""
|
name: ""
|
||||||
enable_thinking: true
|
enable_thinking: false
|
||||||
max_iterations: 3
|
max_iterations: 3
|
||||||
confidence_threshold: 0.8
|
confidence_threshold: 0.8
|
||||||
max_concurrency: 1
|
max_concurrency: 1
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ research:
|
||||||
model:
|
model:
|
||||||
provider: "" # Empty to use qa settings
|
provider: "" # Empty to use qa settings
|
||||||
name: "" # Empty to use qa model
|
name: "" # Empty to use qa model
|
||||||
enable_thinking: true
|
enable_thinking: false
|
||||||
max_iterations: 3
|
max_iterations: 3
|
||||||
confidence_threshold: 0.8
|
confidence_threshold: 0.8
|
||||||
max_concurrency: 1
|
max_concurrency: 1
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ class ResearchConfig(BaseModel):
|
||||||
default_factory=lambda: ModelConfig(
|
default_factory=lambda: ModelConfig(
|
||||||
provider="ollama",
|
provider="ollama",
|
||||||
name="gpt-oss",
|
name="gpt-oss",
|
||||||
enable_thinking=True,
|
enable_thinking=False,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
max_iterations: int = 3
|
max_iterations: int = 3
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue