vision-agent 0.2.77__py3-none-any.whl → 0.2.78__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/tools/tool_utils.py +14 -5
- {vision_agent-0.2.77.dist-info → vision_agent-0.2.78.dist-info}/METADATA +1 -1
- {vision_agent-0.2.77.dist-info → vision_agent-0.2.78.dist-info}/RECORD +5 -5
- {vision_agent-0.2.77.dist-info → vision_agent-0.2.78.dist-info}/LICENSE +0 -0
- {vision_agent-0.2.77.dist-info → vision_agent-0.2.78.dist-info}/WHEEL +0 -0
vision_agent/tools/tool_utils.py
CHANGED
@@ -18,20 +18,29 @@ def send_inference_request(
|
|
18
18
|
) -> Dict[str, Any]:
|
19
19
|
if runtime_tag := os.environ.get("RUNTIME_TAG", ""):
|
20
20
|
payload["runtime_tag"] = runtime_tag
|
21
|
+
|
21
22
|
url = f"{_LND_API_URL}/model/{endpoint_name}"
|
23
|
+
if "TOOL_ENDPOINT_URL" in os.environ:
|
24
|
+
url = os.environ["TOOL_ENDPOINT_URL"]
|
25
|
+
|
26
|
+
headers = {"Content-Type": "application/json", "apikey": _LND_API_KEY}
|
27
|
+
if "TOOL_ENDPOINT_AUTH" in os.environ:
|
28
|
+
headers["Authorization"] = os.environ["TOOL_ENDPOINT_AUTH"]
|
29
|
+
headers.pop("apikey")
|
30
|
+
|
22
31
|
session = _create_requests_session(
|
23
32
|
url=url,
|
24
33
|
num_retry=3,
|
25
|
-
headers=
|
26
|
-
"Content-Type": "application/json",
|
27
|
-
"apikey": _LND_API_KEY,
|
28
|
-
},
|
34
|
+
headers=headers,
|
29
35
|
)
|
30
36
|
res = session.post(url, json=payload)
|
31
37
|
if res.status_code != 200:
|
32
38
|
_LOGGER.error(f"Request failed: {res.status_code} {res.text}")
|
33
39
|
raise ValueError(f"Request failed: {res.status_code} {res.text}")
|
34
|
-
|
40
|
+
|
41
|
+
resp = res.json()
|
42
|
+
# TODO: consider making the response schema the same between below two sources
|
43
|
+
return resp if "TOOL_ENDPOINT_AUTH" in os.environ else resp["data"] # type: ignore
|
35
44
|
|
36
45
|
|
37
46
|
def _create_requests_session(
|
@@ -9,7 +9,7 @@ vision_agent/lmm/__init__.py,sha256=bw24xyQJHGzmph5e-bKCiTh9AX6tRFI2OUd0mofxjZI,
|
|
9
9
|
vision_agent/lmm/lmm.py,sha256=TzzACjTP1MNSrHolUWY7fEJzdVfZELQyImRpT8IU_1E,11690
|
10
10
|
vision_agent/tools/__init__.py,sha256=mF47kfi5X5jfboUxULJnWnFbv1M9uTmmCU3_0uBZVwk,1838
|
11
11
|
vision_agent/tools/prompts.py,sha256=V1z4YJLXZuUl_iZ5rY0M5hHc_2tmMEUKr0WocXKGt4E,1430
|
12
|
-
vision_agent/tools/tool_utils.py,sha256=
|
12
|
+
vision_agent/tools/tool_utils.py,sha256=6z0jrvUnesJEFqDHZoAvbXPic8rzh0KfILL07tu0uRo,2205
|
13
13
|
vision_agent/tools/tools.py,sha256=TkZqNYX-ocwdaCdXd6c6tysSa_HX2y6Nrgl4JKni4IQ,43661
|
14
14
|
vision_agent/utils/__init__.py,sha256=CW84HnhqI6XQVuxf2KifkLnSuO7EOhmuL09-gAymAak,219
|
15
15
|
vision_agent/utils/execute.py,sha256=DMaQz5-yULxDx-TlSMTRKOPHE7VmyR7PArhXXilm7h0,21368
|
@@ -17,7 +17,7 @@ vision_agent/utils/image_utils.py,sha256=_cdiS5YrLzqkq_ZgFUO897m5M4_SCIThwUy4lOk
|
|
17
17
|
vision_agent/utils/sim.py,sha256=ci6Eta73dDgLP1Ajtknbgmf1g8aAvBHqlVQvBuLMKXQ,4427
|
18
18
|
vision_agent/utils/type_defs.py,sha256=BlI8ywWHAplC7kYWLvt4AOdnKpEW3qWEFm-GEOSkrFQ,1792
|
19
19
|
vision_agent/utils/video.py,sha256=rNmU9KEIkZB5-EztZNlUiKYN0mm_55A_2VGUM0QpqLA,8779
|
20
|
-
vision_agent-0.2.
|
21
|
-
vision_agent-0.2.
|
22
|
-
vision_agent-0.2.
|
23
|
-
vision_agent-0.2.
|
20
|
+
vision_agent-0.2.78.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
21
|
+
vision_agent-0.2.78.dist-info/METADATA,sha256=96uFOJ8SvHh4z9OwEWYF2vTsOW-ymDgx7dBQuIA5RaY,9433
|
22
|
+
vision_agent-0.2.78.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
23
|
+
vision_agent-0.2.78.dist-info/RECORD,,
|
File without changes
|
File without changes
|