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
4 changes: 0 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
"source.organizeImports": "explicit"
}
},
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#0099cc",
"titleBar.inactiveBackground": "#0099cc"
},
"python.testing.pytestArgs": [
"tests"
],
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath-langchain"
version = "0.8.26"
version = "0.8.27"
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 @@ -22,6 +22,7 @@ dependencies = [
"jsonpath-ng>=1.7.0",
"mcp==1.26.0",
"langchain-mcp-adapters==0.2.1",
"a2a-sdk>=0.3.0",
]

classifiers = [
Expand Down
2 changes: 2 additions & 0 deletions src/uipath_langchain/agent/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Tool creation and management for LowCode agents."""

from .a2a import create_a2a_agent_tools
from .context_tool import create_context_tool
from .escalation_tool import create_escalation_tool
from .extraction_tool import create_ixp_extraction_tool
Expand All @@ -13,6 +14,7 @@
from .tool_node import ToolWrapperMixin, UiPathToolNode, create_tool_node

__all__ = [
"create_a2a_agent_tools",
"create_tools_from_resources",
"create_tool_node",
"create_context_tool",
Expand Down
7 changes: 7 additions & 0 deletions src/uipath_langchain/agent/tools/a2a/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""A2A (Agent-to-Agent) tools."""

from .a2a_tool import create_a2a_agent_tools

__all__ = [
"create_a2a_agent_tools",
]
Loading
Loading