Skip to content

Commit 4eefe73

Browse files
authored
Fix/fix bedrock client (#24)
1 parent ee12021 commit 4eefe73

3 files changed

Lines changed: 7 additions & 5 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.5] - 2026-02-12
6+
7+
### Fixes
8+
- Fixed bedrock converse api
9+
510
## [1.1.4] - 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.4"
3+
__version__ = "1.1.5"

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,4 @@ def setup_uipath_client(self) -> Self:
5757

5858
@property
5959
def _as_converse(self) -> UiPathChatBedrockConverse:
60-
return UiPathChatBedrockConverse(
61-
model=self.model_name,
62-
settings=self.client_settings,
63-
)
60+
raise NotImplementedError("You must instantiate the converse client directly")

0 commit comments

Comments
 (0)