AutoGPT: Enable hybrid mode by default

This commit is contained in:
Reinier van der Leer
2023-10-17 19:48:00 -07:00
parent cd0df40a4f
commit e0a9341fc0

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=True)
big_brain: bool = UserConfigurable(default=False)
"""
Whether this agent uses the configured smart LLM (default) to think,
as opposed to the configured fast LLM. Enabling this disables hybrid mode.