diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a96e2..c21c211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `uipath_llm_client` (core package) will be documented in this file. +## [1.8.2] - 2026-04-13 + +### Fixed +- Removed top-level import of `UiPathLiteLLM` from `__init__.py` to avoid `ImportError` when the optional `litellm` dependency is not installed + ## [1.8.0] - 2026-04-08 ### Added diff --git a/packages/uipath_langchain_client/CHANGELOG.md b/packages/uipath_langchain_client/CHANGELOG.md index 5b48d0c..069d75b 100644 --- a/packages/uipath_langchain_client/CHANGELOG.md +++ b/packages/uipath_langchain_client/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to `uipath_langchain_client` will be documented in this file. +## [1.8.2] - 2026-04-13 + +### Changed +- Version bump to match core package 1.8.2 + ## [1.8.1] - 2026-04-09 ### Changed diff --git a/packages/uipath_langchain_client/pyproject.toml b/packages/uipath_langchain_client/pyproject.toml index 6dcf69a..13083ac 100644 --- a/packages/uipath_langchain_client/pyproject.toml +++ b/packages/uipath_langchain_client/pyproject.toml @@ -6,7 +6,7 @@ readme = "README.md" requires-python = ">=3.11" dependencies = [ "langchain>=1.2.15", - "uipath-llm-client>=1.8.0", + "uipath-llm-client>=1.8.2", ] [project.optional-dependencies] diff --git a/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py b/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py index e34e71b..61de8d7 100644 --- a/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py +++ b/packages/uipath_langchain_client/src/uipath_langchain_client/__version__.py @@ -1,3 +1,3 @@ __title__ = "UiPath LangChain Client" __description__ = "A Python client for interacting with UiPath's LLM services via LangChain." -__version__ = "1.8.1" +__version__ = "1.8.2" diff --git a/src/uipath/llm_client/__init__.py b/src/uipath/llm_client/__init__.py index 9940b5c..c4e6261 100644 --- a/src/uipath/llm_client/__init__.py +++ b/src/uipath/llm_client/__init__.py @@ -26,7 +26,6 @@ """ from uipath.llm_client.__version__ import __version__ -from uipath.llm_client.clients.litellm import UiPathLiteLLM from uipath.llm_client.clients.normalized import UiPathNormalizedClient from uipath.llm_client.httpx_client import ( UiPathHttpxAsyncClient, @@ -62,8 +61,6 @@ "LLMGatewaySettings", # Normalized client "UiPathNormalizedClient", - # LiteLLM client - "UiPathLiteLLM", # HTTPX clients "UiPathHttpxClient", "UiPathHttpxAsyncClient", diff --git a/src/uipath/llm_client/__version__.py b/src/uipath/llm_client/__version__.py index 926f4c8..19a0cf5 100644 --- a/src/uipath/llm_client/__version__.py +++ b/src/uipath/llm_client/__version__.py @@ -1,3 +1,3 @@ __title__ = "UiPath LLM Client" __description__ = "A Python client for interacting with UiPath's LLM services." -__version__ = "1.8.0" +__version__ = "1.8.2"