File tree Expand file tree Collapse file tree
src/uipath_agents/_services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ description = "UiPath Agents"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.11"
77dependencies = [
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" ,
Original file line number Diff line number Diff line change 33from typing import Any , Dict , List
44
55from pydantic import BaseModel , ConfigDict , Field
6- from uipath ._config import Config
7- from uipath ._execution_context import ExecutionContext
86from 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
1210class FeatureFlagsRequest (BaseModel ):
@@ -28,7 +26,9 @@ class FeatureFlagsResponse(BaseModel):
2826class 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
You can’t perform that action at this time.
0 commit comments