Sun Tao commited on
Commit
b8182ae
·
1 Parent(s): 6d7b1c1

Update run_mini.py

Browse files
Files changed (1) hide show
  1. owl/run_mini.py +2 -2
owl/run_mini.py CHANGED
@@ -16,7 +16,7 @@ from dotenv import load_dotenv
16
  from camel.models import ModelFactory
17
  from camel.toolkits import (
18
  SearchToolkit,
19
- WebToolkit,
20
  FileWriteToolkit,
21
  )
22
  from camel.types import ModelPlatformType, ModelType
@@ -65,7 +65,7 @@ def construct_society(question: str) -> OwlRolePlaying:
65
 
66
  # Configure toolkits
67
  tools = [
68
- *WebToolkit(
69
  headless=False, # Set to True for headless mode (e.g., on remote servers)
70
  web_agent_model=models["web"],
71
  planning_agent_model=models["planning"],
 
16
  from camel.models import ModelFactory
17
  from camel.toolkits import (
18
  SearchToolkit,
19
+ BrowserToolkit,
20
  FileWriteToolkit,
21
  )
22
  from camel.types import ModelPlatformType, ModelType
 
65
 
66
  # Configure toolkits
67
  tools = [
68
+ *BrowserToolkit(
69
  headless=False, # Set to True for headless mode (e.g., on remote servers)
70
  web_agent_model=models["web"],
71
  planning_agent_model=models["planning"],