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:
Reinier van der Leer
2023-11-08 10:11:34 -06:00
parent 345ff6f88d
commit 6c84035c7e

View File

@@ -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.