vision-agent 0.2.65__tar.gz → 0.2.66__tar.gz

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.
Files changed (23) hide show
  1. {vision_agent-0.2.65 → vision_agent-0.2.66}/PKG-INFO +1 -1
  2. {vision_agent-0.2.65 → vision_agent-0.2.66}/pyproject.toml +1 -1
  3. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/agent/vision_agent_prompts.py +2 -0
  4. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/execute.py +17 -2
  5. {vision_agent-0.2.65 → vision_agent-0.2.66}/LICENSE +0 -0
  6. {vision_agent-0.2.65 → vision_agent-0.2.66}/README.md +0 -0
  7. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/__init__.py +0 -0
  8. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/agent/__init__.py +0 -0
  9. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/agent/agent.py +0 -0
  10. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/agent/vision_agent.py +0 -0
  11. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/fonts/__init__.py +0 -0
  12. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
  13. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/lmm/__init__.py +0 -0
  14. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/lmm/lmm.py +0 -0
  15. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/tools/__init__.py +0 -0
  16. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/tools/prompts.py +0 -0
  17. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/tools/tool_utils.py +0 -0
  18. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/tools/tools.py +0 -0
  19. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/__init__.py +0 -0
  20. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/image_utils.py +0 -0
  21. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/sim.py +0 -0
  22. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/type_defs.py +0 -0
  23. {vision_agent-0.2.65 → vision_agent-0.2.66}/vision_agent/utils/video.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vision-agent
3
- Version: 0.2.65
3
+ Version: 0.2.66
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "vision-agent"
7
- version = "0.2.65"
7
+ version = "0.2.66"
8
8
  description = "Toolset for Vision Agent"
9
9
  authors = ["Landing AI <dev@landing.ai>"]
10
10
  readme = "README.md"
@@ -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
 
@@ -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 pkg_resources
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 = pkg_resources.get_distribution("vision-agent").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)
File without changes
File without changes