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.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
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.8.2] - 2026-04-13

### Changed
- Version bump to match core package 1.8.2

## [1.8.1] - 2026-04-09

### Changed
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.15",
"uipath-llm-client>=1.8.0",
"uipath-llm-client>=1.8.2",
]

[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.8.1"
__version__ = "1.8.2"
3 changes: 0 additions & 3 deletions src/uipath/llm_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -62,8 +61,6 @@
"LLMGatewaySettings",
# Normalized client
"UiPathNormalizedClient",
# LiteLLM client
"UiPathLiteLLM",
# HTTPX clients
"UiPathHttpxClient",
"UiPathHttpxAsyncClient",
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.8.0"
__version__ = "1.8.2"