Skip to content

Commit 3608dcd

Browse files
feat: use AgentsLangGraphRuntimeFactory and remove commands middlewares (#27)
1 parent ccbf3b9 commit 3608dcd

9 files changed

Lines changed: 246 additions & 433 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ description = "UiPath Agents"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"
77
dependencies = [
8-
"uipath>=2.2.4",
9-
"uipath-langchain>=0.1.0",
8+
"uipath>=2.2.6",
9+
"uipath-langchain>=0.1.4",
1010
"langgraph>=1.0.0",
1111
"azure-monitor-opentelemetry>=1.7.0",
1212
"opentelemetry-instrumentation-aiohttp-client>=0.49.0",
@@ -19,9 +19,6 @@ maintainers = [
1919
{ name = "Cristian Cotovanu", email = "cristian.cotovanu@uipath.com" },
2020
]
2121

22-
[project.entry-points."uipath.middlewares"]
23-
register = "uipath_agents.middlewares:register_middleware"
24-
2522
[project.entry-points."uipath.runtime.factories"]
2623
agents = "uipath_agents.runtime:register_runtime_factory"
2724

src/uipath_agents/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from .middlewares import register_middleware
21
from .runtime import register_runtime_factory
32

4-
__all__ = ["register_middleware", "register_runtime_factory"]
3+
__all__ = ["register_runtime_factory"]

src/uipath_agents/_cli/cli_debug.py

Lines changed: 0 additions & 121 deletions
This file was deleted.

src/uipath_agents/_cli/cli_run.py

Lines changed: 0 additions & 143 deletions
This file was deleted.

0 commit comments

Comments
 (0)