vision-agent 0.2.61__tar.gz → 0.2.63__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.61 → vision_agent-0.2.63}/PKG-INFO +1 -2
  2. {vision_agent-0.2.61 → vision_agent-0.2.63}/README.md +0 -1
  3. {vision_agent-0.2.61 → vision_agent-0.2.63}/pyproject.toml +1 -1
  4. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/agent/vision_agent.py +7 -1
  5. {vision_agent-0.2.61 → vision_agent-0.2.63}/LICENSE +0 -0
  6. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/__init__.py +0 -0
  7. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/agent/__init__.py +0 -0
  8. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/agent/agent.py +0 -0
  9. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/agent/vision_agent_prompts.py +0 -0
  10. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/fonts/__init__.py +0 -0
  11. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
  12. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/lmm/__init__.py +0 -0
  13. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/lmm/lmm.py +0 -0
  14. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/tools/__init__.py +0 -0
  15. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/tools/prompts.py +0 -0
  16. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/tools/tool_utils.py +0 -0
  17. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/tools/tools.py +0 -0
  18. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/utils/__init__.py +0 -0
  19. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/utils/execute.py +0 -0
  20. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/utils/image_utils.py +0 -0
  21. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/utils/sim.py +0 -0
  22. {vision_agent-0.2.61 → vision_agent-0.2.63}/vision_agent/utils/type_defs.py +0 -0
  23. {vision_agent-0.2.61 → vision_agent-0.2.63}/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.61
3
+ Version: 0.2.63
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -242,7 +242,6 @@ You can then run Vision Agent using the Azure OpenAI models:
242
242
 
243
243
  ```python
244
244
  import vision_agent as va
245
- import vision_agent.tools as T
246
245
  agent = va.agent.AzureVisionAgent()
247
246
  ```
248
247
 
@@ -206,6 +206,5 @@ You can then run Vision Agent using the Azure OpenAI models:
206
206
 
207
207
  ```python
208
208
  import vision_agent as va
209
- import vision_agent.tools as T
210
209
  agent = va.agent.AzureVisionAgent()
211
210
  ```
@@ -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.61"
7
+ version = "0.2.63"
8
8
  description = "Toolset for Vision Agent"
9
9
  authors = ["Landing AI <dev@landing.ai>"]
10
10
  readme = "README.md"
@@ -97,6 +97,7 @@ def extract_json(json_str: str) -> Dict[str, Any]:
97
97
  try:
98
98
  json_dict = json.loads(json_str)
99
99
  except json.JSONDecodeError:
100
+ input_json_str = json_str
100
101
  if "```json" in json_str:
101
102
  json_str = json_str[json_str.find("```json") + len("```json") :]
102
103
  json_str = json_str[: json_str.find("```")]
@@ -104,7 +105,12 @@ def extract_json(json_str: str) -> Dict[str, Any]:
104
105
  json_str = json_str[json_str.find("```") + len("```") :]
105
106
  # get the last ``` not one from an intermediate string
106
107
  json_str = json_str[: json_str.find("}```")]
107
- json_dict = json.loads(json_str)
108
+ try:
109
+ json_dict = json.loads(json_str)
110
+ except json.JSONDecodeError as e:
111
+ error_msg = f"Could not extract JSON from the given str: {json_str}.\nFunction input:\n{input_json_str}"
112
+ _LOGGER.exception(error_msg)
113
+ raise ValueError(error_msg) from e
108
114
  return json_dict # type: ignore
109
115
 
110
116
 
File without changes