From 2b0eada1762681ab4598ead2da5a26e8c537c02f Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Wed, 30 Oct 2024 12:53:16 -0400 Subject: [PATCH] agent: enable browsing & jupyter by default --- openhands/core/config/agent_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openhands/core/config/agent_config.py b/openhands/core/config/agent_config.py index db6225be8c..5061bfd475 100644 --- a/openhands/core/config/agent_config.py +++ b/openhands/core/config/agent_config.py @@ -19,9 +19,9 @@ class AgentConfig: """ function_calling: bool = True - codeact_enable_browsing_delegate: bool = False + codeact_enable_browsing_delegate: bool = True codeact_enable_llm_editor: bool = False - codeact_enable_jupyter: bool = False + codeact_enable_jupyter: bool = True micro_agent_name: str | None = None memory_enabled: bool = False memory_max_threads: int = 3