From e0a9341fc05a8bea20bb2a84adf6d492380f449e Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Tue, 17 Oct 2023 19:48:00 -0700 Subject: [PATCH] AutoGPT: Enable hybrid mode by default --- autogpts/autogpt/autogpt/agents/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpts/autogpt/autogpt/agents/base.py b/autogpts/autogpt/autogpt/agents/base.py index 1dd9ac49..db3bec6e 100644 --- a/autogpts/autogpt/autogpt/agents/base.py +++ b/autogpts/autogpt/autogpt/agents/base.py @@ -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.