vision-agent 0.2.180__py3-none-any.whl → 0.2.181__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vision_agent/agent/vision_agent.py +17 -22
- {vision_agent-0.2.180.dist-info → vision_agent-0.2.181.dist-info}/METADATA +1 -1
- {vision_agent-0.2.180.dist-info → vision_agent-0.2.181.dist-info}/RECORD +5 -5
- {vision_agent-0.2.180.dist-info → vision_agent-0.2.181.dist-info}/LICENSE +0 -0
- {vision_agent-0.2.180.dist-info → vision_agent-0.2.181.dist-info}/WHEEL +0 -0
@@ -492,29 +492,8 @@ class VisionAgent(Agent):
|
|
492
492
|
code_interpreter.upload_file(artifacts.local_save_path)
|
493
493
|
|
494
494
|
response = run_conversation(self.agent, int_chat)
|
495
|
-
code_action = use_extra_vision_agent_args(
|
496
|
-
response.get("execute_python", None),
|
497
|
-
test_multi_plan,
|
498
|
-
custom_tool_names,
|
499
|
-
)
|
500
495
|
if self.verbosity >= 1:
|
501
496
|
_LOGGER.info(response)
|
502
|
-
int_chat.append(
|
503
|
-
{
|
504
|
-
"role": "assistant",
|
505
|
-
"content": json.dumps(
|
506
|
-
new_format_to_old_format(add_step_descriptions(response))
|
507
|
-
),
|
508
|
-
}
|
509
|
-
)
|
510
|
-
orig_chat.append(
|
511
|
-
{
|
512
|
-
"role": "assistant",
|
513
|
-
"content": json.dumps(
|
514
|
-
new_format_to_old_format(add_step_descriptions(response))
|
515
|
-
),
|
516
|
-
}
|
517
|
-
)
|
518
497
|
|
519
498
|
code_action = response.get("execute_python", None)
|
520
499
|
# sometimes it gets stuck in a loop, so we force it to exit
|
@@ -529,7 +508,7 @@ class VisionAgent(Agent):
|
|
529
508
|
"value": "Agent is stuck in conversation loop, exited",
|
530
509
|
"traceback_raw": [],
|
531
510
|
},
|
532
|
-
"finished":
|
511
|
+
"finished": True,
|
533
512
|
}
|
534
513
|
)
|
535
514
|
else:
|
@@ -544,6 +523,22 @@ class VisionAgent(Agent):
|
|
544
523
|
}
|
545
524
|
)
|
546
525
|
|
526
|
+
int_chat.append(
|
527
|
+
{
|
528
|
+
"role": "assistant",
|
529
|
+
"content": json.dumps(
|
530
|
+
new_format_to_old_format(add_step_descriptions(response))
|
531
|
+
),
|
532
|
+
}
|
533
|
+
)
|
534
|
+
orig_chat.append(
|
535
|
+
{
|
536
|
+
"role": "assistant",
|
537
|
+
"content": json.dumps(
|
538
|
+
new_format_to_old_format(add_step_descriptions(response))
|
539
|
+
),
|
540
|
+
}
|
541
|
+
)
|
547
542
|
finished = response.get("let_user_respond", False)
|
548
543
|
|
549
544
|
if code_action is not None:
|
@@ -2,7 +2,7 @@ vision_agent/__init__.py,sha256=EAb4-f9iyuEYkBrX4ag1syM8Syx8118_t0R6_C34M9w,57
|
|
2
2
|
vision_agent/agent/__init__.py,sha256=RRMPhH8mgm_pCtEKiVFSjJyDi4lCr4F7k05AhK01xlM,436
|
3
3
|
vision_agent/agent/agent.py,sha256=2cjIOxEuSJrqbfPXYoV0qER5ihXsPFCoEFJa4jpqan0,597
|
4
4
|
vision_agent/agent/agent_utils.py,sha256=WYJF11PfKXlRMPnogGz3s7c2TlWoxoGzuLiIptVYE1s,5524
|
5
|
-
vision_agent/agent/vision_agent.py,sha256=
|
5
|
+
vision_agent/agent/vision_agent.py,sha256=rr1P9iTbr7OsjgMYWCeIxQYI4cLwPWia3NIMJNi-9Yo,26110
|
6
6
|
vision_agent/agent/vision_agent_coder.py,sha256=3Q1VWrN-BNUoSD4OAqKazvXkP2c04PXDYu2Z1f5dQb0,31960
|
7
7
|
vision_agent/agent/vision_agent_coder_prompts.py,sha256=gPLVXQMNSzYnQYpNm0wlH_5FPkOTaFDV24bqzK3jQ40,12221
|
8
8
|
vision_agent/agent/vision_agent_planner.py,sha256=mjmnXG9CvYf_ZA7ZJ3ri4H-2U_Km55gF1sZYRSOlxpY,19027
|
@@ -29,7 +29,7 @@ vision_agent/utils/image_utils.py,sha256=rm9GfXvD4JrjnqKrP_f2gfq4SzmqYC0IdC1kKwd
|
|
29
29
|
vision_agent/utils/sim.py,sha256=ZuSS07TUXFGjipmiQoY8TKRmSes7XXCdtU9PI8PC1sw,5609
|
30
30
|
vision_agent/utils/type_defs.py,sha256=BE12s3JNQy36QvauXHjwyeffVh5enfcvd4vTzSwvEZI,1384
|
31
31
|
vision_agent/utils/video.py,sha256=fOPR48-SuwMbE5eB5rc2F7lVo6k1mVHn26eEJ0QCslc,5602
|
32
|
-
vision_agent-0.2.
|
33
|
-
vision_agent-0.2.
|
34
|
-
vision_agent-0.2.
|
35
|
-
vision_agent-0.2.
|
32
|
+
vision_agent-0.2.181.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
33
|
+
vision_agent-0.2.181.dist-info/METADATA,sha256=-nmK94yTI4Gdo2YCN3KsiuYUUyo6IuxCEgdfS_Ik-Vs,18330
|
34
|
+
vision_agent-0.2.181.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
35
|
+
vision_agent-0.2.181.dist-info/RECORD,,
|
File without changes
|
File without changes
|