Skip to content

Commit d6f6f0f

Browse files
authored
Merge pull request #149 from UiPath/fix/update_uipath_range_openai
fix: update uipath 2.8.0
2 parents 90c4aad + d2f5b77 commit d6f6f0f

3 files changed

Lines changed: 32 additions & 15 deletions

File tree

packages/uipath-openai-agents/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-openai-agents"
3-
version = "0.0.4"
3+
version = "0.0.5"
44
description = "UiPath OpenAI Agents SDK"
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -9,8 +9,8 @@ dependencies = [
99
"openai>=1.0.0",
1010
"openai-agents>=0.6.5",
1111
"openinference-instrumentation-openai-agents>=1.4.0",
12-
"uipath>=2.5.0, <2.6.0",
13-
"uipath-runtime>=0.5.0, <0.6.0",
12+
"uipath>=2.8.0, <2.9.0",
13+
"uipath-runtime>=0.6.0, <0.7.0",
1414
]
1515
classifiers = [
1616
"Intended Audience :: Developers",

packages/uipath-openai-agents/src/uipath_openai_agents/runtime/factory.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
from openinference.instrumentation.openai_agents import OpenAIAgentsInstrumentor
88
from uipath.runtime import (
99
UiPathRuntimeContext,
10+
UiPathRuntimeFactorySettings,
1011
UiPathRuntimeProtocol,
12+
UiPathRuntimeStorageProtocol,
1113
)
1214
from uipath.runtime.errors import UiPathErrorCategory
1315

@@ -179,6 +181,21 @@ async def discover_runtimes(self) -> list[UiPathRuntimeProtocol]:
179181

180182
return runtimes
181183

184+
async def get_storage(self) -> UiPathRuntimeStorageProtocol | None:
185+
"""
186+
Get the shared storage instance.
187+
"""
188+
return None
189+
190+
async def get_settings(self) -> UiPathRuntimeFactorySettings | None:
191+
"""
192+
Get the factory settings.
193+
194+
Returns:
195+
Factory settings
196+
"""
197+
return None
198+
182199
async def _create_runtime_instance(
183200
self,
184201
agent: Agent,

packages/uipath-openai-agents/uv.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)