File tree Expand file tree Collapse file tree
packages/uipath_langchain_client
src/uipath_langchain_client Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to ` uipath_llm_client ` (core package) will be documented in this file.
44
5+ ## [ 1.8.2] - 2026-04-13
6+
7+ ### Fixed
8+ - Removed top-level import of ` UiPathLiteLLM ` from ` __init__.py ` to avoid ` ImportError ` when the optional ` litellm ` dependency is not installed
9+
510## [ 1.8.0] - 2026-04-08
611
712### Added
Original file line number Diff line number Diff line change 22
33All notable changes to ` uipath_langchain_client ` will be documented in this file.
44
5+ ## [ 1.8.2] - 2026-04-13
6+
7+ ### Changed
8+ - Version bump to match core package 1.8.2
9+
510## [ 1.8.1] - 2026-04-09
611
712### Changed
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ readme = "README.md"
66requires-python = " >=3.11"
77dependencies = [
88 " langchain>=1.2.15" ,
9- " uipath-llm-client>=1.8.0 " ,
9+ " uipath-llm-client>=1.8.2 " ,
1010]
1111
1212[project .optional-dependencies ]
Original file line number Diff line number Diff line change 11__title__ = "UiPath LangChain Client"
22__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3- __version__ = "1.8.1 "
3+ __version__ = "1.8.2 "
Original file line number Diff line number Diff line change 2626"""
2727
2828from uipath .llm_client .__version__ import __version__
29- from uipath .llm_client .clients .litellm import UiPathLiteLLM
3029from uipath .llm_client .clients .normalized import UiPathNormalizedClient
3130from uipath .llm_client .httpx_client import (
3231 UiPathHttpxAsyncClient ,
6261 "LLMGatewaySettings" ,
6362 # Normalized client
6463 "UiPathNormalizedClient" ,
65- # LiteLLM client
66- "UiPathLiteLLM" ,
6764 # HTTPX clients
6865 "UiPathHttpxClient" ,
6966 "UiPathHttpxAsyncClient" ,
Original file line number Diff line number Diff line change 11__title__ = "UiPath LLM Client"
22__description__ = "A Python client for interacting with UiPath's LLM services."
3- __version__ = "1.8.0 "
3+ __version__ = "1.8.2 "
You can’t perform that action at this time.
0 commit comments