Skip to content

Commit 2d9c3a4

Browse files
committed
re-export normalized client
1 parent 39f29b3 commit 2d9c3a4

4 files changed

Lines changed: 15 additions & 1 deletion

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.7] - 2026-02-13
6+
7+
### Refactor
8+
- Re-export UiPathChat and UiPathEmbeddings at module level
9+
510
## [1.1.6] - 2026-02-12
611

712
### Fixes

packages/uipath_langchain_client/src/uipath_langchain_client/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"""
3434

3535
from uipath_langchain_client.__version__ import __version__
36+
from uipath_langchain_client.clients import UiPathChat, UiPathEmbeddings
3637
from uipath_langchain_client.factory import get_chat_model, get_embedding_model
3738
from uipath_langchain_client.settings import (
3839
AgentHubSettings,
@@ -44,6 +45,8 @@
4445
"__version__",
4546
"get_chat_model",
4647
"get_embedding_model",
48+
"UiPathChat",
49+
"UiPathEmbeddings",
4750
"get_default_client_settings",
4851
"LLMGatewaySettings",
4952
"AgentHubSettings",
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.6"
3+
__version__ = "1.1.7"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from uipath_langchain_client.clients.normalized import UiPathChat, UiPathEmbeddings
2+
3+
__all__ = [
4+
"UiPathChat",
5+
"UiPathEmbeddings",
6+
]

0 commit comments

Comments
 (0)