vision-agent 0.0.34__py3-none-any.whl → 0.0.35__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-0.0.34.dist-info → vision_agent-0.0.35.dist-info}/METADATA +6 -7
- {vision_agent-0.0.34.dist-info → vision_agent-0.0.35.dist-info}/RECORD +4 -4
- {vision_agent-0.0.34.dist-info → vision_agent-0.0.35.dist-info}/LICENSE +0 -0
- {vision_agent-0.0.34.dist-info → vision_agent-0.0.35.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: vision-agent
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.35
|
4
4
|
Summary: Toolset for Vision Agent
|
5
5
|
Author: Landing AI
|
6
6
|
Author-email: dev@landing.ai
|
@@ -35,13 +35,12 @@ Description-Content-Type: text/markdown
|
|
35
35
|
</div>
|
36
36
|
|
37
37
|
Vision Agent is a library that helps you utilize agent frameworks for your vision tasks.
|
38
|
-
|
39
|
-
|
40
|
-
Many current vision problems can easy take hours or days to solve, you need to find the
|
38
|
+
Many current vision problems can easily take hours or days to solve, you need to find the
|
41
39
|
right model, figure out how to use it, possibly write programming logic around it to
|
42
40
|
accomplish the task you want or even more expensive, train your own model. Vision Agent
|
43
41
|
aims to provide an in-seconds experience by allowing users to describe their problem in
|
44
|
-
text and utilizing agent frameworks to solve the task for them.
|
42
|
+
text and utilizing agent frameworks to solve the task for them. Check out our discord
|
43
|
+
for updates and roadmaps!
|
45
44
|
|
46
45
|
## Getting Started
|
47
46
|
### Installation
|
@@ -86,7 +85,7 @@ the individual steps and tools to get the answer:
|
|
86
85
|
"call_results": [[
|
87
86
|
{
|
88
87
|
"labels": ["apple", "apple"],
|
89
|
-
"scores": [0.99, 0.95]
|
88
|
+
"scores": [0.99, 0.95],
|
90
89
|
"bboxes": [
|
91
90
|
[0.58, 0.2, 0.72, 0.45],
|
92
91
|
[0.94, 0.57, 0.98, 0.66],
|
@@ -108,7 +107,7 @@ you. For example:
|
|
108
107
|
>>> detector = llm.generate_detector("Can you build an apple detector for me?")
|
109
108
|
>>> detector("apples.jpg")
|
110
109
|
[{"labels": ["apple", "apple"],
|
111
|
-
"scores": [0.99, 0.95]
|
110
|
+
"scores": [0.99, 0.95],
|
112
111
|
"bboxes": [
|
113
112
|
[0.58, 0.2, 0.72, 0.45],
|
114
113
|
[0.94, 0.57, 0.98, 0.66],
|
@@ -19,7 +19,7 @@ vision_agent/lmm/lmm.py,sha256=ARcbgkcyP83TbVVoXI9B-gtG0gJuTaG_MjcUGbams4U,8052
|
|
19
19
|
vision_agent/tools/__init__.py,sha256=aX0pU3pXU1V0Cj9FzYCvdsX76TAglFMHx59kNhXHbPs,131
|
20
20
|
vision_agent/tools/prompts.py,sha256=9RBbyqlNlExsGKlJ89Jkph83DAEJ8PCVGaHoNbyN7TM,1416
|
21
21
|
vision_agent/tools/tools.py,sha256=j_Jq_YHNmwrGXNR3fL9qi0yrHorqFui5UnAnLcEw20U,16826
|
22
|
-
vision_agent-0.0.
|
23
|
-
vision_agent-0.0.
|
24
|
-
vision_agent-0.0.
|
25
|
-
vision_agent-0.0.
|
22
|
+
vision_agent-0.0.35.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
23
|
+
vision_agent-0.0.35.dist-info/METADATA,sha256=5ofgjIl0NMVqXu_gFeoZ5xlfedqVbNztHONDVa3xP2E,4966
|
24
|
+
vision_agent-0.0.35.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
25
|
+
vision_agent-0.0.35.dist-info/RECORD,,
|
File without changes
|
File without changes
|