Skip to content
Open
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
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-langchain"
version = "0.14.10"
version = "0.14.11"
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
Expand All @@ -9,7 +9,7 @@ dependencies = [
"uipath-core>=0.5.29, <0.6.0",
"uipath-platform>=0.2.10, <0.3.0",
"uipath-runtime>=0.12.1, <0.13.0",
"uipath-llm-client>=1.17.0, <1.18.0",
"uipath-llm-client>=1.17.1, <1.18.0",
"langgraph>=1.1.8, <2.0.0",
"langchain-core>=1.2.27, <2.0.0",
"langgraph-checkpoint-sqlite>=3.0.3, <4.0.0",
Expand All @@ -26,7 +26,7 @@ dependencies = [
"pillow>=12.1.1",
"rdflib>=7.0.0, <8.0.0",
"a2a-sdk>=0.2.0,<1.0.0",
"uipath-langchain-client[openai]>=1.17.0,<1.18.0",
"uipath-langchain-client[openai]>=1.17.1,<1.18.0",
]

classifiers = [
Expand All @@ -43,21 +43,21 @@ maintainers = [

[project.optional-dependencies]
anthropic = [
"uipath-langchain-client[anthropic]>=1.17.0,<1.18.0",
"uipath-langchain-client[anthropic]>=1.17.1,<1.18.0",
]
vertex = [
"uipath-langchain-client[google]>=1.17.0,<1.18.0",
"uipath-langchain-client[vertexai]>=1.17.0,<1.18.0",
"uipath-langchain-client[google]>=1.17.1,<1.18.0",
"uipath-langchain-client[vertexai]>=1.17.1,<1.18.0",
]
bedrock = [
"uipath-langchain-client[bedrock]>=1.17.0,<1.18.0",
"uipath-langchain-client[bedrock]>=1.17.1,<1.18.0",
"boto3-stubs>=1.41.4",
]
fireworks = [
"uipath-langchain-client[fireworks]>=1.17.0,<1.18.0",
"uipath-langchain-client[fireworks]>=1.17.1,<1.18.0",
]
all = [
"uipath-langchain-client[all]>=1.17.0,<1.18.0",
"uipath-langchain-client[all]>=1.17.1,<1.18.0",
]

[project.entry-points."uipath.middlewares"]
Expand Down
4 changes: 3 additions & 1 deletion src/uipath_langchain/chat/_legacy/chat_model_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ def _get_model_info(
matching_models = [m for m in matching_models if m.get("byomDetails") is None]

if not matching_models:
raise ValueError(
from uipath.llm_client.utils.exceptions import ModelNotFoundError

raise ModelNotFoundError(
f"model='{model}' and byo_connection_id={byo_connection_id}"
+ " is not available. It was not returned by the discovery API."
)
Comment on lines 236 to 242
Expand Down
Loading