vision-agent 0.2.71__tar.gz → 0.2.73__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.71 → vision_agent-0.2.73}/PKG-INFO +2 -2
  2. {vision_agent-0.2.71 → vision_agent-0.2.73}/README.md +1 -1
  3. {vision_agent-0.2.71 → vision_agent-0.2.73}/pyproject.toml +1 -1
  4. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/tools/tool_utils.py +0 -5
  5. {vision_agent-0.2.71 → vision_agent-0.2.73}/LICENSE +0 -0
  6. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/__init__.py +0 -0
  7. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/agent/__init__.py +0 -0
  8. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/agent/agent.py +0 -0
  9. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/agent/vision_agent.py +0 -0
  10. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/agent/vision_agent_prompts.py +0 -0
  11. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/fonts/__init__.py +0 -0
  12. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
  13. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/lmm/__init__.py +0 -0
  14. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/lmm/lmm.py +0 -0
  15. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/tools/__init__.py +0 -0
  16. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/tools/prompts.py +0 -0
  17. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/tools/tools.py +0 -0
  18. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/utils/__init__.py +0 -0
  19. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/utils/execute.py +0 -0
  20. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/utils/image_utils.py +0 -0
  21. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/utils/sim.py +0 -0
  22. {vision_agent-0.2.71 → vision_agent-0.2.73}/vision_agent/utils/type_defs.py +0 -0
  23. {vision_agent-0.2.71 → vision_agent-0.2.73}/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.71
3
+ Version: 0.2.73
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -78,7 +78,7 @@ export OPENAI_API_KEY="your-api-key"
78
78
  ```
79
79
 
80
80
  ### Important Note on API Usage
81
- Please be aware that using the API in this project requires you to have API credits (minimum of five US dollars). This is different from the OpenAI subscription used in this chatbot. If you don't have credit, further information can be found [here](https://github.com/landing-ai/vision-agent?tab=readme-ov-file#to-get-started-with-api-credits)
81
+ Please be aware that using the API in this project requires you to have API credits (minimum of five US dollars). This is different from the OpenAI subscription used in this chatbot. If you don't have credit, further information can be found [here](https://github.com/landing-ai/vision-agent?tab=readme-ov-file#how-to-get-started-with-openai-api-credits)
82
82
 
83
83
  ### Vision Agent
84
84
  #### Basic Usage
@@ -41,7 +41,7 @@ export OPENAI_API_KEY="your-api-key"
41
41
  ```
42
42
 
43
43
  ### Important Note on API Usage
44
- Please be aware that using the API in this project requires you to have API credits (minimum of five US dollars). This is different from the OpenAI subscription used in this chatbot. If you don't have credit, further information can be found [here](https://github.com/landing-ai/vision-agent?tab=readme-ov-file#to-get-started-with-api-credits)
44
+ Please be aware that using the API in this project requires you to have API credits (minimum of five US dollars). This is different from the OpenAI subscription used in this chatbot. If you don't have credit, further information can be found [here](https://github.com/landing-ai/vision-agent?tab=readme-ov-file#how-to-get-started-with-openai-api-credits)
45
45
 
46
46
  ### Vision Agent
47
47
  #### Basic Usage
@@ -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.71"
7
+ version = "0.2.73"
8
8
  description = "Toolset for Vision Agent"
9
9
  authors = ["Landing AI <dev@landing.ai>"]
10
10
  readme = "README.md"
@@ -2,7 +2,6 @@ import logging
2
2
  import os
3
3
  from typing import Any, Dict
4
4
 
5
- import requests
6
5
  from requests import Session
7
6
  from requests.adapters import HTTPAdapter
8
7
  from urllib3.util.retry import Retry
@@ -28,10 +27,6 @@ def send_inference_request(
28
27
  "apikey": _LND_API_KEY,
29
28
  },
30
29
  )
31
- res = requests.post(
32
- f"{_LND_API_URL}/model/{endpoint_name}",
33
- json=payload,
34
- )
35
30
  res = session.post(url, json=payload)
36
31
  if res.status_code != 200:
37
32
  _LOGGER.error(f"Request failed: {res.status_code} {res.text}")
File without changes