Skip to content

Commit 58c1c98

Browse files
ionut-mihalache-uipathcosminacho
authored andcommitted
feat: add ff (#778)
1 parent 93e9766 commit 58c1c98

39 files changed

+7495
-1523
lines changed

pyproject.toml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ dependencies = [
2222
"mcp==1.26.0",
2323
"langchain-mcp-adapters==0.2.1",
2424
"pillow>=12.1.1",
25-
"a2a-sdk>=0.2.0",
26-
"uipath-langchain-client[openai]>=1.9.2",
25+
"a2a-sdk>=0.2.0,<1.0.0",
26+
"uipath-langchain-client[openai]>=1.9.5",
2727
]
2828

2929
classifiers = [
@@ -40,20 +40,21 @@ maintainers = [
4040

4141
[project.optional-dependencies]
4242
anthropic = [
43-
"uipath-langchain-client[anthropic]>=1.9.2",
43+
"uipath-langchain-client[anthropic]>=1.9.5",
4444
]
4545
vertex = [
46-
"uipath-langchain-client[google]>=1.9.2",
47-
"uipath-langchain-client[vertexai]>=1.9.2",
46+
"uipath-langchain-client[google]>=1.9.5",
47+
"uipath-langchain-client[vertexai]>=1.9.5",
4848
]
4949
bedrock = [
50-
"uipath-langchain-client[bedrock]>=1.9.2",
50+
"uipath-langchain-client[bedrock]>=1.9.5",
51+
"boto3-stubs>=1.41.4",
5152
]
5253
fireworks = [
53-
"uipath-langchain-client[fireworks]>=1.9.2",
54+
"uipath-langchain-client[fireworks]>=1.9.5",
5455
]
5556
all = [
56-
"uipath-langchain-client[all]>=1.9.2",
57+
"uipath-langchain-client[all]>=1.9.5",
5758
]
5859

5960
[project.entry-points."uipath.middlewares"]
@@ -85,7 +86,6 @@ dev = [
8586
"numpy>=1.24.0",
8687
"pytest_httpx>=0.35.0",
8788
"rust-just>=1.39.0",
88-
"pyright>=1.1.408",
8989
]
9090

9191
[tool.hatch.build.targets.wheel]
@@ -101,8 +101,8 @@ select = ["E", "F", "B", "I"]
101101

102102
[tool.ruff.lint.per-file-ignores]
103103
"*" = ["E501"]
104-
"src/uipath_langchain/chat/bedrock.py" = ["E402"]
105-
"src/uipath_langchain/chat/vertex.py" = ["E402"]
104+
"src/uipath_langchain/chat/_legacy/bedrock.py" = ["E402"]
105+
"src/uipath_langchain/chat/_legacy/vertex.py" = ["E402"]
106106

107107
[tool.ruff.format]
108108
quote-style = "double"
@@ -136,3 +136,4 @@ name = "testpypi"
136136
url = "https://test.pypi.org/simple/"
137137
publish-url = "https://test.pypi.org/legacy/"
138138
explicit = true
139+

pyrightconfig.json

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from ._environment import get_execution_folder_path
2+
from ._request_mixin import UiPathRequestMixin
23

3-
__all__ = ["get_execution_folder_path"]
4+
__all__ = ["UiPathRequestMixin", "get_execution_folder_path"]

0 commit comments

Comments
 (0)