vision-agent 0.2.69__tar.gz → 0.2.70__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.
- {vision_agent-0.2.69 → vision_agent-0.2.70}/PKG-INFO +7 -3
- {vision_agent-0.2.69 → vision_agent-0.2.70}/README.md +6 -2
- {vision_agent-0.2.69 → vision_agent-0.2.70}/pyproject.toml +1 -1
- {vision_agent-0.2.69 → vision_agent-0.2.70}/LICENSE +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/agent/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/agent/agent.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/agent/vision_agent.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/agent/vision_agent_prompts.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/fonts/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/lmm/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/lmm/lmm.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/tools/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/tools/prompts.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/tools/tool_utils.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/tools/tools.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/utils/__init__.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/utils/execute.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/utils/image_utils.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/utils/sim.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/vision_agent/utils/type_defs.py +0 -0
- {vision_agent-0.2.69 → vision_agent-0.2.70}/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.
|
3
|
+
Version: 0.2.70
|
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/
|
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)
|
82
82
|
|
83
83
|
### Vision Agent
|
84
84
|
#### Basic Usage
|
@@ -248,8 +248,12 @@ You can then run Vision Agent using the Azure OpenAI models:
|
|
248
248
|
import vision_agent as va
|
249
249
|
agent = va.agent.AzureVisionAgent()
|
250
250
|
```
|
251
|
+
|
251
252
|
******************************************************************************************************************************
|
252
|
-
|
253
|
+
|
254
|
+
### Q&A
|
255
|
+
|
256
|
+
#### How to get started with OpenAI API credits
|
253
257
|
|
254
258
|
1. Visit the[OpenAI API platform](https://beta.openai.com/signup/) to sign up for an API key.
|
255
259
|
2. Follow the instructions to purchase and manage your API credits.
|
@@ -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/
|
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)
|
45
45
|
|
46
46
|
### Vision Agent
|
47
47
|
#### Basic Usage
|
@@ -211,8 +211,12 @@ You can then run Vision Agent using the Azure OpenAI models:
|
|
211
211
|
import vision_agent as va
|
212
212
|
agent = va.agent.AzureVisionAgent()
|
213
213
|
```
|
214
|
+
|
214
215
|
******************************************************************************************************************************
|
215
|
-
|
216
|
+
|
217
|
+
### Q&A
|
218
|
+
|
219
|
+
#### How to get started with OpenAI API credits
|
216
220
|
|
217
221
|
1. Visit the[OpenAI API platform](https://beta.openai.com/signup/) to sign up for an API key.
|
218
222
|
2. Follow the instructions to purchase and manage your API credits.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|