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.5] - 2026-02-12

### Fixes
- Fixed bedrock converse api

## [1.1.4] - 2026-02-12

### Fixes
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.4"
__version__ = "1.1.5"
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,4 @@ def setup_uipath_client(self) -> Self:

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