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.1] - 2026-02-11

### Fixes
- Fix langchain fireworks client for async usage

## [1.1.0] - 2026-02-11

### Features
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.0"
__version__ = "1.1.1"
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ def setup_uipath_client(self) -> Self:
fireworks_client_v1._client = self.uipath_sync_client
fireworks_client_v1._async_client = self.uipath_async_client
self.client._client = fireworks_client_v1
self.async_client._client = fireworks_client_v1
return self
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions src/uipath_llm_client/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Loading