vision-agent 0.2.64__py3-none-any.whl → 0.2.66__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 +1 -0
- vision_agent/agent/vision_agent_prompts.py +2 -0
- vision_agent/utils/execute.py +17 -2
- {vision_agent-0.2.64.dist-info → vision_agent-0.2.66.dist-info}/METADATA +1 -1
- {vision_agent-0.2.64.dist-info → vision_agent-0.2.66.dist-info}/RECORD +7 -7
- {vision_agent-0.2.64.dist-info → vision_agent-0.2.66.dist-info}/LICENSE +0 -0
- {vision_agent-0.2.64.dist-info → vision_agent-0.2.66.dist-info}/WHEEL +0 -0
@@ -179,6 +179,8 @@ This is the documentation for the functions you have access to. You may call any
|
|
179
179
|
8. DO NOT use try except block to handle the error, let the error be raised if the code is incorrect.
|
180
180
|
9. DO NOT import the testing function as it will available in the testing environment.
|
181
181
|
10. Print the output of the function that is being tested.
|
182
|
+
11. Use the output of the function that is being tested as the return value of the testing function.
|
183
|
+
12. Run the testing function in the end and don't assign a variable to its output.
|
182
184
|
"""
|
183
185
|
|
184
186
|
|
vision_agent/utils/execute.py
CHANGED
@@ -309,6 +309,21 @@ class Execution(BaseModel):
|
|
309
309
|
"""
|
310
310
|
return self.error is None
|
311
311
|
|
312
|
+
def get_main_result(self) -> Optional[Result]:
|
313
|
+
"""
|
314
|
+
Get the main result of the execution.
|
315
|
+
An execution may have multiple results, e.g. intermediate outputs. The main result is the last output of the cell execution.
|
316
|
+
"""
|
317
|
+
if not self.success:
|
318
|
+
_LOGGER.info("Result is not available as the execution was not successful.")
|
319
|
+
return None
|
320
|
+
if not self.results or not any(res.is_main_result for res in self.results):
|
321
|
+
_LOGGER.info("Execution was successful but there is no main result.")
|
322
|
+
return None
|
323
|
+
main_result = self.results[-1]
|
324
|
+
assert main_result.is_main_result, "The last result should be the main result."
|
325
|
+
return main_result
|
326
|
+
|
312
327
|
def to_json(self) -> str:
|
313
328
|
"""
|
314
329
|
Returns the JSON representation of the Execution object.
|
@@ -411,11 +426,11 @@ class E2BCodeInterpreter(CodeInterpreter):
|
|
411
426
|
"""
|
412
427
|
import platform
|
413
428
|
import sys
|
414
|
-
import
|
429
|
+
import importlib.metadata
|
415
430
|
|
416
431
|
print(f"Python version: {sys.version}")
|
417
432
|
print(f"OS version: {platform.system()} {platform.release()} ({platform.architecture()})")
|
418
|
-
va_version =
|
433
|
+
va_version = importlib.metadata.version("vision-agent")
|
419
434
|
print(f"Vision Agent version: {va_version}")"""
|
420
435
|
)
|
421
436
|
sys_versions = "\n".join(result.logs.stdout)
|
@@ -1,8 +1,8 @@
|
|
1
1
|
vision_agent/__init__.py,sha256=EAb4-f9iyuEYkBrX4ag1syM8Syx8118_t0R6_C34M9w,57
|
2
2
|
vision_agent/agent/__init__.py,sha256=IUwfbPMcT8X_rnXMLmI8gJ4ltsHy_XSs9eLiKURJxeY,81
|
3
3
|
vision_agent/agent/agent.py,sha256=ZK-5lOtd9-eD9aWcXssJpnOyvZuO7_5hAmnb-6sWVe8,569
|
4
|
-
vision_agent/agent/vision_agent.py,sha256=
|
5
|
-
vision_agent/agent/vision_agent_prompts.py,sha256=
|
4
|
+
vision_agent/agent/vision_agent.py,sha256=HC63BP4jPiR4lJLEkKQ-zMV5C5JwjnuZvc7hVjjS2uk,25284
|
5
|
+
vision_agent/agent/vision_agent_prompts.py,sha256=jpGJjrxDrxZej5SSgsTEK1sSYttgkTiZqxZAU1jWfvk,8656
|
6
6
|
vision_agent/fonts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
vision_agent/fonts/default_font_ch_en.ttf,sha256=1YM0Z3XqLDjSNbF7ihQFSAIUdjF9m1rtHiNC_6QosTE,1594400
|
8
8
|
vision_agent/lmm/__init__.py,sha256=3ro5lCIoS3DgEghOy0SPFrEhYvFnWZpVC5S5kSnIx6A,57
|
@@ -12,12 +12,12 @@ vision_agent/tools/prompts.py,sha256=V1z4YJLXZuUl_iZ5rY0M5hHc_2tmMEUKr0WocXKGt4E
|
|
12
12
|
vision_agent/tools/tool_utils.py,sha256=wzRacbUpqk9hhfX_Y08rL8qP0XCN2w-8IZoYLi3Upn4,869
|
13
13
|
vision_agent/tools/tools.py,sha256=Qzwm_wu6KJh-3DSoNmZ4Lv8jCCNJMwKIPBFxxN6FmDo,31397
|
14
14
|
vision_agent/utils/__init__.py,sha256=CW84HnhqI6XQVuxf2KifkLnSuO7EOhmuL09-gAymAak,219
|
15
|
-
vision_agent/utils/execute.py,sha256=
|
15
|
+
vision_agent/utils/execute.py,sha256=QImS69SN00logF-E68aNpT7YsJVRQOhZYlNLmCNEfro,21337
|
16
16
|
vision_agent/utils/image_utils.py,sha256=_cdiS5YrLzqkq_ZgFUO897m5M4_SCIThwUy4lOklfB8,7700
|
17
17
|
vision_agent/utils/sim.py,sha256=ci6Eta73dDgLP1Ajtknbgmf1g8aAvBHqlVQvBuLMKXQ,4427
|
18
18
|
vision_agent/utils/type_defs.py,sha256=BlI8ywWHAplC7kYWLvt4AOdnKpEW3qWEFm-GEOSkrFQ,1792
|
19
19
|
vision_agent/utils/video.py,sha256=rNmU9KEIkZB5-EztZNlUiKYN0mm_55A_2VGUM0QpqLA,8779
|
20
|
-
vision_agent-0.2.
|
21
|
-
vision_agent-0.2.
|
22
|
-
vision_agent-0.2.
|
23
|
-
vision_agent-0.2.
|
20
|
+
vision_agent-0.2.66.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
21
|
+
vision_agent-0.2.66.dist-info/METADATA,sha256=ou2H7-t3sn8KBwg6x56HCF1lf2epJi3-8-Doht3_Ci0,8363
|
22
|
+
vision_agent-0.2.66.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
23
|
+
vision_agent-0.2.66.dist-info/RECORD,,
|
File without changes
|
File without changes
|