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.
@@ -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
- return res.json()["data"] # type: ignore
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(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vision-agent
3
- Version: 0.2.77
3
+ Version: 0.2.78
4
4
  Summary: Toolset for Vision Agent
5
5
  Author: Landing AI
6
6
  Author-email: dev@landing.ai
@@ -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=ZOY45bCX3nlo6iGwaZ8RVpRJB-vWxkXDed9oegT7-p0,1838
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.77.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
21
- vision_agent-0.2.77.dist-info/METADATA,sha256=2GjXWlij7wzd19pzbjNRt__AVhpVtLcAe_WfGnydxTI,9433
22
- vision_agent-0.2.77.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
23
- vision_agent-0.2.77.dist-info/RECORD,,
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,,