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.
- {vision_agent-0.2.79 → vision_agent-0.2.80}/PKG-INFO +1 -1
- {vision_agent-0.2.79 → vision_agent-0.2.80}/pyproject.toml +1 -1
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/execute.py +5 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/sim.py +3 -5
- {vision_agent-0.2.79 → vision_agent-0.2.80}/LICENSE +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/README.md +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/agent.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/vision_agent.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/agent/vision_agent_prompts.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/fonts/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/fonts/default_font_ch_en.ttf +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/lmm/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/lmm/lmm.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/prompts.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/tool_utils.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/tools/tools.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/__init__.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/exceptions.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/image_utils.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/type_defs.py +0 -0
- {vision_agent-0.2.79 → vision_agent-0.2.80}/vision_agent/utils/video.py +0 -0
@@ -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
|
-
|
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
|
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
|