Commit
·
f88c294
1
Parent(s):
48b4c57
add docstring
Browse files- owl/run_deepseek_example.py +1 -1
- owl/run_qwq_demo.py +1 -1
owl/run_deepseek_example.py
CHANGED
@@ -35,7 +35,7 @@ def construct_society(question: str) -> OwlRolePlaying:
|
|
35 |
|
36 |
tools_list = [
|
37 |
*WebToolkit(
|
38 |
-
headless=False,
|
39 |
web_agent_model=assistant_model,
|
40 |
planning_agent_model=assistant_model
|
41 |
).get_tools(),
|
|
|
35 |
|
36 |
tools_list = [
|
37 |
*WebToolkit(
|
38 |
+
headless=False, # Set to True if you want to run in headless mode (e.g. on a remote server)
|
39 |
web_agent_model=assistant_model,
|
40 |
planning_agent_model=assistant_model
|
41 |
).get_tools(),
|
owl/run_qwq_demo.py
CHANGED
@@ -43,7 +43,7 @@ def construct_society(question: str) -> OwlRolePlaying:
|
|
43 |
|
44 |
tools_list = [
|
45 |
*WebToolkit(
|
46 |
-
headless=False,
|
47 |
web_agent_model=assistant_model,
|
48 |
planning_agent_model=assistant_model
|
49 |
).get_tools(),
|
|
|
43 |
|
44 |
tools_list = [
|
45 |
*WebToolkit(
|
46 |
+
headless=False, # Set to True if you want to run in headless mode (e.g. on a remote server)
|
47 |
web_agent_model=assistant_model,
|
48 |
planning_agent_model=assistant_model
|
49 |
).get_tools(),
|