mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-10 07:38:04 -05:00
Disable hybrid mode in AutoGPT by default
- Update `big_brain` attribute in `BaseAgentConfiguration` to default to `True`. - This change disables hybrid mode in AutoGPT, making it use the configured smart LLM for thinking.
This commit is contained in:
@@ -61,7 +61,7 @@ class BaseAgentConfiguration(SystemConfiguration):
|
||||
default_cycle_instruction: str = DEFAULT_TRIGGERING_PROMPT
|
||||
"""The default instruction passed to the AI for a thinking cycle."""
|
||||
|
||||
big_brain: bool = UserConfigurable(default=False)
|
||||
big_brain: bool = UserConfigurable(default=True)
|
||||
"""
|
||||
Whether this agent uses the configured smart LLM (default) to think,
|
||||
as opposed to the configured fast LLM. Enabling this disables hybrid mode.
|
||||
|
||||
Reference in New Issue
Block a user