vision-agent 0.2.79__tar.gz → 0.2.80__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 (24) hide show
  1. {vision_agent-0.2.79 → vision_agent-0.2.80}/PKG-INFO +1 -1
  2. {vision_agent-0.2.79 → vision_agent-0.2.80}/pyproject.toml +1 -1
  3. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/execute.py +5 -0
  4. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/sim.py +3 -5
  5. {vision_agent-0.2.79 → vision_agent-0.2.80}/LICENSE +0 -0
  6. {vision_agent-0.2.79 → vision_agent-0.2.80}/README.md +0 -0
  7. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/__init__.py +0 -0
  8. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/__init__.py +0 -0
  9. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/agent.py +0 -0
  10. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/vision_agent.py +0 -0
  11. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/vision_agent_prompts.py +0 -0
  12. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/fonts/__init__.py +0 -0
  13. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
  14. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/lmm/__init__.py +0 -0
  15. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/lmm/lmm.py +0 -0
  16. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/__init__.py +0 -0
  17. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/prompts.py +0 -0
  18. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/tool_utils.py +0 -0
  19. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/tools.py +0 -0
  20. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/__init__.py +0 -0
  21. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/exceptions.py +0 -0
  22. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/image_utils.py +0 -0
  23. {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/type_defs.py +0 -0
  24. {vision_agent-0.2.79 → vision_agent-0.2.80}/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.79
3
+ Version: 0.2.80
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -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.79"
7
+ version = "0.2.80"
8
8
  description = "Toolset for Vision Agent"
9
9
  authors = ["Landing AI <dev@landing.ai>"]
10
10
  readme = "README.md"
@@ -112,6 +112,11 @@ class Result:
112
112
  self.raw = copy.deepcopy(data)
113
113
 
114
114
  self.text = data.pop(MimeType.TEXT_PLAIN, None)
115
+ if self.text and (self.text.startswith("'") and self.text.endswith("'")):
116
+ # This is a workaround for the issue that str result is wrapped with single quotes by notebook.
117
+ # E.g. input text: "'flower'". what we want: "flower"
118
+ self.text = self.text[1:-1]
119
+
115
120
  self.html = data.pop(MimeType.TEXT_HTML, None)
116
121
  self.markdown = data.pop(MimeType.TEXT_MARKDOWN, None)
117
122
  self.svg = data.pop(MimeType.IMAGE_SVG, None)
@@ -1,4 +1,5 @@
1
1
  import os
2
+ from functools import lru_cache
2
3
  from pathlib import Path
3
4
  from typing import Dict, List, Optional, Sequence, Union
4
5
 
@@ -33,11 +34,7 @@ class Sim:
33
34
  model: str: The model to use for embeddings.
34
35
  """
35
36
  self.df = df
36
- if not api_key:
37
- self.client = OpenAI()
38
- else:
39
- self.client = OpenAI(api_key=api_key)
40
-
37
+ self.client = OpenAI(api_key=api_key)
41
38
  self.model = model
42
39
  if "embs" not in df.columns and sim_key is None:
43
40
  raise ValueError("key is required if no column 'embs' is present.")
@@ -57,6 +54,7 @@ class Sim:
57
54
  df = df.drop("embs", axis=1)
58
55
  df.to_csv(sim_file / "df.csv", index=False)
59
56
 
57
+ @lru_cache(maxsize=256)
60
58
  def top_k(
61
59
  self, query: str, k: int = 5, thresh: Optional[float] = None
62
60
  ) -> Sequence[Dict]:
File without changes
File without changes