vision-agent 0.0.34__tar.gz → 0.0.35__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 (25) hide show
  1. {vision_agent-0.0.34 → vision_agent-0.0.35}/PKG-INFO +6 -7
  2. {vision_agent-0.0.34 → vision_agent-0.0.35}/README.md +5 -6
  3. {vision_agent-0.0.34 → vision_agent-0.0.35}/pyproject.toml +1 -1
  4. {vision_agent-0.0.34 → vision_agent-0.0.35}/LICENSE +0 -0
  5. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/__init__.py +0 -0
  6. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/__init__.py +0 -0
  7. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/agent.py +0 -0
  8. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/easytool.py +0 -0
  9. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/easytool_prompts.py +0 -0
  10. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/reflexion.py +0 -0
  11. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/reflexion_prompts.py +0 -0
  12. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/vision_agent.py +0 -0
  13. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/agent/vision_agent_prompts.py +0 -0
  14. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/data/__init__.py +0 -0
  15. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/data/data.py +0 -0
  16. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/emb/__init__.py +0 -0
  17. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/emb/emb.py +0 -0
  18. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/image_utils.py +0 -0
  19. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/llm/__init__.py +0 -0
  20. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/llm/llm.py +0 -0
  21. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/lmm/__init__.py +0 -0
  22. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/lmm/lmm.py +0 -0
  23. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/tools/__init__.py +0 -0
  24. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/tools/prompts.py +0 -0
  25. {vision_agent-0.0.34 → vision_agent-0.0.35}/vision_agent/tools/tools.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vision-agent
3
- Version: 0.0.34
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
- Check out our discord for updates and roadmaps!
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],
@@ -10,13 +10,12 @@
10
10
  </div>
11
11
 
12
12
  Vision Agent is a library that helps you utilize agent frameworks for your vision tasks.
13
- Check out our discord for updates and roadmaps!
14
-
15
- Many current vision problems can easy take hours or days to solve, you need to find the
13
+ Many current vision problems can easily take hours or days to solve, you need to find the
16
14
  right model, figure out how to use it, possibly write programming logic around it to
17
15
  accomplish the task you want or even more expensive, train your own model. Vision Agent
18
16
  aims to provide an in-seconds experience by allowing users to describe their problem in
19
- text and utilizing agent frameworks to solve the task for them.
17
+ text and utilizing agent frameworks to solve the task for them. Check out our discord
18
+ for updates and roadmaps!
20
19
 
21
20
  ## Getting Started
22
21
  ### Installation
@@ -61,7 +60,7 @@ the individual steps and tools to get the answer:
61
60
  "call_results": [[
62
61
  {
63
62
  "labels": ["apple", "apple"],
64
- "scores": [0.99, 0.95]
63
+ "scores": [0.99, 0.95],
65
64
  "bboxes": [
66
65
  [0.58, 0.2, 0.72, 0.45],
67
66
  [0.94, 0.57, 0.98, 0.66],
@@ -83,7 +82,7 @@ you. For example:
83
82
  >>> detector = llm.generate_detector("Can you build an apple detector for me?")
84
83
  >>> detector("apples.jpg")
85
84
  [{"labels": ["apple", "apple"],
86
- "scores": [0.99, 0.95]
85
+ "scores": [0.99, 0.95],
87
86
  "bboxes": [
88
87
  [0.58, 0.2, 0.72, 0.45],
89
88
  [0.94, 0.57, 0.98, 0.66],
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "vision-agent"
7
- version = "0.0.34"
7
+ version = "0.0.35"
8
8
  description = "Toolset for Vision Agent"
9
9
  authors = ["Landing AI <dev@landing.ai>"]
10
10
  readme = "README.md"
File without changes