Skip to content

Commit ee12021

Browse files
authored
fixed anthropic vendor (#23)
1 parent 676f836 commit ee12021

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

packages/uipath_langchain_client/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
## [1.1.4] - 2026-02-12
6+
7+
### Fixes
8+
- Fixed anthropic default vendor
9+
510
## [1.1.3] - 2026-02-12
611

712
### Fixes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "UiPath LangChain Client"
22
__description__ = "A Python client for interacting with UiPath's LLM services via LangChain."
3-
__version__ = "1.1.3"
3+
__version__ = "1.1.4"

packages/uipath_langchain_client/src/uipath_langchain_client/clients/anthropic/chat_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ class UiPathChatAnthropic(UiPathBaseLLMClient, ChatAnthropic):
3030
api_config: UiPathAPIConfig = UiPathAPIConfig(
3131
api_type="completions",
3232
client_type="passthrough",
33-
vendor_type="anthropic",
33+
vendor_type="awsbedrock",
3434
freeze_base_url=True,
3535
)
36-
vendor_type: Literal["anthropic", "azure", "vertexai", "awsbedrock"] = "anthropic"
36+
vendor_type: Literal["anthropic", "azure", "vertexai", "awsbedrock"] = "awsbedrock"
3737

3838
@model_validator(mode="after")
3939
def setup_api_flavor_and_version(self) -> Self:

0 commit comments

Comments
 (0)