Skip to content
Merged
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
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.9.24"
version = "0.9.25"
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 @@ -23,6 +23,7 @@ dependencies = [
"mcp==1.26.0",
"langchain-mcp-adapters==0.2.1",
"pillow>=12.1.1",
"a2a-sdk>=0.2.0",
]

classifiers = [
Expand Down
4 changes: 4 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 A2aClient, create_a2a_tools_and_clients, open_a2a_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 @@ -18,6 +19,9 @@
)

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

from .a2a_tool import (
A2aClient,
create_a2a_tools_and_clients,
open_a2a_tools,
)

__all__ = [
"A2aClient",
"create_a2a_tools_and_clients",
"open_a2a_tools",
]
Loading
Loading