Skip to content

Commit 2f9a642

Browse files
chore(build): upgrade dependencies (#33)
x
1 parent 9ce6d33 commit 2f9a642

3 files changed

Lines changed: 1110 additions & 83 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ description = "UiPath Agents"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"
77
dependencies = [
8-
"uipath>=2.2.8",
9-
"uipath-langchain>=0.1.13",
8+
"uipath>=2.2.21",
9+
"uipath-langchain>=0.1.18",
10+
"uipath-runtime>=0.2.2",
1011
"langgraph>=1.0.0",
1112
"azure-monitor-opentelemetry>=1.7.0",
1213
"opentelemetry-instrumentation-aiohttp-client>=0.49.0",

src/uipath_agents/_services/flags_service.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
from typing import Any, Dict, List
44

55
from pydantic import BaseModel, ConfigDict, Field
6-
from uipath._config import Config
7-
from uipath._execution_context import ExecutionContext
86
from uipath._utils import Endpoint, RequestSpec
9-
from uipath.platform.common._base_service import BaseService
7+
from uipath.platform.common import BaseService, UiPathApiConfig, UiPathExecutionContext
108

119

1210
class FeatureFlagsRequest(BaseModel):
@@ -28,7 +26,9 @@ class FeatureFlagsResponse(BaseModel):
2826
class FlagsService(BaseService):
2927
"""Service for retrieving feature flags from the Agents Runtime API."""
3028

31-
def __init__(self, config: Config, execution_context: ExecutionContext) -> None:
29+
def __init__(
30+
self, config: UiPathApiConfig, execution_context: UiPathExecutionContext
31+
) -> None:
3232
"""Initialize the flags service."""
3333
super().__init__(config=config, execution_context=execution_context)
3434

0 commit comments

Comments
 (0)