Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## [1.5.3] - 2026-03-18

### Fix
- Factory function fix

## [1.5.2] - 2026-03-18

### Fix
Expand Down
5 changes: 5 additions & 0 deletions packages/uipath_langchain_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

## [1.5.3] - 2026-03-18

### Fix
- Factory function fix

## [1.5.2] - 2026-03-18

### Fix
Expand Down
2 changes: 1 addition & 1 deletion packages/uipath_langchain_client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"langchain>=1.2.12",
"uipath-llm-client>=1.5.2",
"uipath-llm-client>=1.5.3",
]

[project.optional-dependencies]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__title__ = "UiPath LangChain Client"
__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
__version__ = "1.5.2"
__version__ = "1.5.3"
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ def get_chat_model(
byo_connection_id=byo_connection_id,
vendor_type=vendor_type,
)
model_family = model_info.get("modelFamily", None)
if model_family is not None:
model_family = model_family.lower()
is_uipath_owned = model_info.get("modelSubscriptionType") == "UiPathOwned"
model_family = model_info.get("modelFamily", "").lower()
if not is_uipath_owned:
client_settings.validate_byo_model(model_info)

Expand Down
2 changes: 1 addition & 1 deletion src/uipath/llm_client/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__title__ = "UiPath LLM Client"
__description__ = "A Python client for interacting with UiPath's LLM services."
__version__ = "1.5.2"
__version__ = "1.5.3"