vision-agent 0.2.179__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.
@@ -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": code_action is None,
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:
@@ -1970,8 +1970,14 @@ def overlay_bounding_boxes(
1970
1970
  medias_int: List[np.ndarray] = (
1971
1971
  [medias] if isinstance(medias, np.ndarray) else medias
1972
1972
  )
1973
- bbox_int = [bboxes] if isinstance(bboxes[0], dict) else bboxes
1974
- bbox_int = cast(List[List[Dict[str, Any]]], bbox_int)
1973
+ if len(bboxes) == 0:
1974
+ bbox_int: List[List[Dict[str, Any]]] = [[] for _ in medias_int]
1975
+ else:
1976
+ if isinstance(bboxes[0], dict):
1977
+ bbox_int = [cast(List[Dict[str, Any]], bboxes)]
1978
+ else:
1979
+ bbox_int = cast(List[List[Dict[str, Any]]], bboxes)
1980
+
1975
1981
  labels = set([bb["label"] for b in bbox_int for bb in b])
1976
1982
 
1977
1983
  if len(labels) > len(COLORS):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vision-agent
3
- Version: 0.2.179
3
+ Version: 0.2.181
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -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=x0-TElnTRW7abyq2wAwKRiTUExBGg24C-c74wO1oKtI,26336
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
@@ -20,7 +20,7 @@ vision_agent/tools/__init__.py,sha256=OEBJGOXNpCG1Ye-N39ahjWR4lL0RPVkcX60s25LpdV
20
20
  vision_agent/tools/meta_tools.py,sha256=by7TIbH7lsLIayX_Pe2mS1iw8aeLn2T8yqAo8SkB9Kg,32074
21
21
  vision_agent/tools/prompts.py,sha256=V1z4YJLXZuUl_iZ5rY0M5hHc_2tmMEUKr0WocXKGt4E,1430
22
22
  vision_agent/tools/tool_utils.py,sha256=VPGqGJ2ZYEJA6AW7K9X7hQv6vRlMtAQcybE4izdToCw,8196
23
- vision_agent/tools/tools.py,sha256=KwqEHlmTUkR2YglQMYPQQstPkDopfvyLoI0-RivzH3c,81063
23
+ vision_agent/tools/tools.py,sha256=9MbX3b_xff-cHeCh46_q6gt7b5jNSCVSwiu2rwM43Ws,81224
24
24
  vision_agent/tools/tools_types.py,sha256=8hYf2OZhI58gvf65KGaeGkt4EQ56nwLFqIQDPHioOBc,2339
25
25
  vision_agent/utils/__init__.py,sha256=7fMgbZiEwbNS0fBOS_hJI5PuEYBblw36zLi_UjUzvj4,244
26
26
  vision_agent/utils/exceptions.py,sha256=booSPSuoULF7OXRr_YbC4dtKt6gM_HyiFQHBuaW86C4,2052
@@ -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.179.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
33
- vision_agent-0.2.179.dist-info/METADATA,sha256=Gy3GmMvxmQnNWG1LMvAlSHOENQRzxgYu6S8yH0feCUk,18330
34
- vision_agent-0.2.179.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
35
- vision_agent-0.2.179.dist-info/RECORD,,
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,,