We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
verbose
1 parent 9d1d433 commit fd6d493Copy full SHA for fd6d493
operate/models/apis.py
@@ -36,12 +36,14 @@
36
37
# Load configuration
38
config = Config()
39
-VERBOSE = config
+VERBOSE = config.verbose
40
41
42
async def get_next_action(model, messages, objective, session_id):
43
if VERBOSE:
44
print("[Self-Operating Computer][get_next_action]")
45
+ print("[Self-Operating Computer][get_next_action] VERBOSE", VERBOSE)
46
+ print("[Self-Operating Computer][get_next_action] config", config)
47
print("[Self-Operating Computer][get_next_action] model", model)
48
if model == "gpt-4":
49
return call_gpt_4_vision_preview(messages), None
0 commit comments