Skip to content

Commit de84bb8

Browse files
cosminachoclaude
andauthored
fix: add UiPathChatVertex alias to chat.vertex and bump to 0.10.1 (#798)
Co-authored-by: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
1 parent c4efcd8 commit de84bb8

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath_langchain/chat/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,11 @@ def __getattr__(name):
8484

8585
return UiPathChatFireworks
8686
if name == "UiPathChatVertex":
87-
from uipath_langchain.chat._legacy.vertex import UiPathChatVertex
87+
from uipath_langchain_client.clients.google.chat_models import (
88+
UiPathChatGoogleGenerativeAI,
89+
)
8890

89-
return UiPathChatVertex
91+
return UiPathChatGoogleGenerativeAI
9092
if name in ("OpenAIModels", "BedrockModels", "GeminiModels"):
9193
from uipath_langchain.chat._legacy import supported_models
9294

src/uipath_langchain/chat/vertex.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
UiPathChatGoogleGenerativeAI,
33
)
44

5+
UiPathChatVertex = UiPathChatGoogleGenerativeAI
6+
57
__all__ = [
68
"UiPathChatGoogleGenerativeAI",
9+
"UiPathChatVertex",
710
]

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)