Skip to content

Commit e0fd91d

Browse files
committed
fixes to discovery endpoint
1 parent 294e609 commit e0fd91d

6 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to `uipath_llm_client` (core package) will be documented in this file.
44

5+
## [1.2.2] - 2026-02-23
6+
7+
### Fix
8+
- Fixes to discovery endpoint on LLMGW
9+
510
## [1.2.1] - 2026-02-18
611

712
### Fix

packages/uipath_langchain_client/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to `uipath_langchain_client` will be documented in this file.
44

5+
## [1.2.2] - 2026-02-23
6+
7+
### Fix
8+
- Fixes to discovery endpoint on LLMGW
9+
510
## [1.2.1] - 2026-02-18
611

712
### Fix

packages/uipath_langchain_client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"langchain>=1.2.7",
9-
"uipath-llm-client>=1.2.1",
9+
"uipath-llm-client>=1.2.2",
1010
]
1111

1212
[project.optional-dependencies]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "UiPath LangChain Client"
22
__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3-
__version__ = "1.2.1"
3+
__version__ = "1.2.2"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__titile__ = "UiPath LLM Client"
22
__description__ = "A Python client for interacting with UiPath's LLM services."
3-
__version__ = "1.2.1"
3+
__version__ = "1.2.2"

src/uipath_llm_client/settings/llmgateway/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def get_available_models(self) -> list[dict[str, Any]]:
107107
discovery_url = f"{self.base_url}/{self.org_id}/{self.tenant_id}/{LLMGatewayEndpoints.DISCOVERY_ENDPOINT.value}"
108108
with Client(auth=self.build_auth_pipeline(), headers=self.build_auth_headers()) as client:
109109
response = client.get(discovery_url)
110+
response.raise_for_status()
110111
return response.json()
111112

112113
@override

0 commit comments

Comments
 (0)