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 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.1.8] - 2026-02-13

### Refactor
- Adjust Anthropic factory method to use ChatAnthropic instead of ChatAnthropicVertex

## [1.1.7] - 2026-02-13

### Refactor
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.1.7"
__version__ = "1.1.8"
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,16 @@ def get_chat_model(
case "vertexai":
if is_uipath_owned:
if "claude" in model_name:
from uipath_langchain_client.clients.vertexai.chat_models import (
UiPathChatAnthropicVertex,
from uipath_langchain_client.clients.anthropic.chat_models import (
UiPathChatAnthropic,
)

return cast(
UiPathBaseChatModel,
UiPathChatAnthropicVertex(
UiPathChatAnthropic(
model=model_name,
settings=client_settings,
vendor_type=vendor_type,
**model_kwargs,
),
)
Expand Down