uipath-openai-agents 0.0.1__tar.gz → 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. uipath_openai_agents-0.0.2/PKG-INFO +146 -0
  2. uipath_openai_agents-0.0.2/README.md +125 -0
  3. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/docs/quick_start.md +7 -7
  4. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/pyproject.toml +3 -2
  5. uipath_openai_agents-0.0.2/samples/agent-as-tools/input.json +3 -0
  6. uipath_openai_agents-0.0.2/samples/agent-as-tools/main.py +91 -0
  7. uipath_openai_agents-0.0.2/samples/agent-as-tools/openai_agents.json +5 -0
  8. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/pyproject.toml +1 -4
  9. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/uv.lock +64 -37
  10. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/.agent/CLI_REFERENCE.md +4 -0
  11. {uipath_openai_agents-0.0.1/samples/triage-agent → uipath_openai_agents-0.0.2/samples/rag-assistant}/.agent/SDK_REFERENCE.md +27 -2
  12. uipath_openai_agents-0.0.2/samples/rag-assistant/.claude/commands/eval.md +287 -0
  13. uipath_openai_agents-0.0.2/samples/rag-assistant/.claude/commands/new-agent.md +103 -0
  14. uipath_openai_agents-0.0.2/samples/rag-assistant/.env.example +3 -0
  15. uipath_openai_agents-0.0.2/samples/rag-assistant/CLAUDE.md +1 -0
  16. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/entry-points.json +5 -5
  17. uipath_openai_agents-0.0.2/samples/rag-assistant/input.json +3 -0
  18. uipath_openai_agents-0.0.2/samples/rag-assistant/main.py +33 -0
  19. uipath_openai_agents-0.0.2/samples/rag-assistant/openai_agents.json +5 -0
  20. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/pyproject.toml +1 -4
  21. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/uv.lock +64 -37
  22. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/README.md +5 -5
  23. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/entry-points.json +4 -4
  24. uipath_openai_agents-0.0.2/samples/triage-agent/input.json +3 -0
  25. uipath_openai_agents-0.0.2/samples/triage-agent/main.py +59 -0
  26. uipath_openai_agents-0.0.2/samples/triage-agent/openai_agents.json +5 -0
  27. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/pyproject.toml +1 -4
  28. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/uv.lock +74 -25
  29. uipath_openai_agents-0.0.2/src/uipath_openai_agents/__init__.py +28 -0
  30. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/_cli/_templates/AGENTS.md.template +1 -1
  31. uipath_openai_agents-0.0.2/src/uipath_openai_agents/_cli/_templates/main.py.template +34 -0
  32. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/_cli/cli_new.py +2 -6
  33. uipath_openai_agents-0.0.2/src/uipath_openai_agents/chat/__init__.py +32 -0
  34. uipath_openai_agents-0.0.2/src/uipath_openai_agents/chat/supported_models.py +60 -0
  35. uipath_openai_agents-0.0.2/src/uipath_openai_agents/runtime/__init__.py +66 -0
  36. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/_serialize.py +4 -4
  37. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/agent.py +0 -17
  38. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/factory.py +0 -120
  39. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/runtime.py +21 -205
  40. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/schema.py +11 -112
  41. uipath_openai_agents-0.0.2/testcases/common/__init__.py +1 -0
  42. uipath_openai_agents-0.0.2/testcases/common/trace_assert.py +143 -0
  43. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/testcases/common/validate_output.sh +13 -9
  44. uipath_openai_agents-0.0.2/testcases/init-flow/README.md +50 -0
  45. uipath_openai_agents-0.0.2/testcases/init-flow/expected_traces.json +18 -0
  46. uipath_openai_agents-0.0.2/testcases/init-flow/input.json +3 -0
  47. uipath_openai_agents-0.0.2/testcases/init-flow/pyproject.toml +14 -0
  48. uipath_openai_agents-0.0.2/testcases/init-flow/run.sh +32 -0
  49. uipath_openai_agents-0.0.2/testcases/init-flow/src/assert.py +65 -0
  50. uipath_openai_agents-0.0.2/testcases/triage-agent/input.json +3 -0
  51. uipath_openai_agents-0.0.2/testcases/triage-agent/openai_agents.json +5 -0
  52. uipath_openai_agents-0.0.2/testcases/triage-agent/src/main.py +50 -0
  53. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/cli/test_init.py +8 -8
  54. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/cli/test_run.py +4 -4
  55. uipath_openai_agents-0.0.2/tests/conftest.py +18 -0
  56. uipath_openai_agents-0.0.2/tests/demo_schema_inference.py +97 -0
  57. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/test_agent_as_tools_schema.py +19 -16
  58. uipath_openai_agents-0.0.2/tests/test_integration.py +87 -0
  59. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/test_schema_inference.py +11 -41
  60. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/test_serialization.py +23 -0
  61. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/uv.lock +1 -1
  62. uipath_openai_agents-0.0.1/PKG-INFO +0 -53
  63. uipath_openai_agents-0.0.1/README.md +0 -32
  64. uipath_openai_agents-0.0.1/samples/agent-as-tools/input.json +0 -3
  65. uipath_openai_agents-0.0.1/samples/agent-as-tools/main.py +0 -133
  66. uipath_openai_agents-0.0.1/samples/agent-as-tools/openai_agents.json +0 -5
  67. uipath_openai_agents-0.0.1/samples/rag-assistant/input.json +0 -3
  68. uipath_openai_agents-0.0.1/samples/rag-assistant/main.py +0 -76
  69. uipath_openai_agents-0.0.1/samples/rag-assistant/openai_agents.json +0 -5
  70. uipath_openai_agents-0.0.1/samples/triage-agent/CLAUDE.md +0 -1
  71. uipath_openai_agents-0.0.1/samples/triage-agent/input.json +0 -3
  72. uipath_openai_agents-0.0.1/samples/triage-agent/main.py +0 -106
  73. uipath_openai_agents-0.0.1/samples/triage-agent/openai_agents.json +0 -5
  74. uipath_openai_agents-0.0.1/src/uipath_openai_agents/__init__.py +0 -7
  75. uipath_openai_agents-0.0.1/src/uipath_openai_agents/_cli/_templates/main.py.template +0 -28
  76. uipath_openai_agents-0.0.1/src/uipath_openai_agents/chat/__init__.py +0 -5
  77. uipath_openai_agents-0.0.1/src/uipath_openai_agents/chat/supported_models.py +0 -78
  78. uipath_openai_agents-0.0.1/src/uipath_openai_agents/runtime/__init__.py +0 -40
  79. uipath_openai_agents-0.0.1/src/uipath_openai_agents/runtime/_sqlite.py +0 -190
  80. uipath_openai_agents-0.0.1/src/uipath_openai_agents/runtime/_telemetry.py +0 -32
  81. uipath_openai_agents-0.0.1/src/uipath_openai_agents/runtime/storage.py +0 -357
  82. uipath_openai_agents-0.0.1/testcases/triage-agent/input.json +0 -3
  83. uipath_openai_agents-0.0.1/testcases/triage-agent/openai_agents.json +0 -5
  84. uipath_openai_agents-0.0.1/testcases/triage-agent/src/main.py +0 -42
  85. uipath_openai_agents-0.0.1/tests/conftest.py +0 -32
  86. uipath_openai_agents-0.0.1/tests/demo_schema_inference.py +0 -112
  87. uipath_openai_agents-0.0.1/tests/test_integration.py +0 -166
  88. uipath_openai_agents-0.0.1/tests/test_storage.py +0 -479
  89. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/.gitignore +0 -0
  90. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/.python-version +0 -0
  91. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/CONTRIBUTING.md +0 -0
  92. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/.agent/CLI_REFERENCE.md +0 -0
  93. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/.agent/REQUIRED_STRUCTURE.md +0 -0
  94. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/.agent/SDK_REFERENCE.md +0 -0
  95. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/.env.example +0 -0
  96. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/AGENTS.md +0 -0
  97. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/CLAUDE.md +0 -0
  98. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/README.md +0 -0
  99. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/agent.mermaid +0 -0
  100. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/bindings.json +0 -0
  101. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/agent-as-tools/uipath.json +0 -0
  102. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/.agent/REQUIRED_STRUCTURE.md +0 -0
  103. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/AGENTS.md +0 -0
  104. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/agent.mermaid +0 -0
  105. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/bindings.json +0 -0
  106. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/rag-assistant/uipath.json +0 -0
  107. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/.agent/CLI_REFERENCE.md +0 -0
  108. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/.agent/REQUIRED_STRUCTURE.md +0 -0
  109. {uipath_openai_agents-0.0.1/samples/rag-assistant → uipath_openai_agents-0.0.2/samples/triage-agent}/.agent/SDK_REFERENCE.md +0 -0
  110. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/AGENTS.md +0 -0
  111. {uipath_openai_agents-0.0.1/samples/rag-assistant → uipath_openai_agents-0.0.2/samples/triage-agent}/CLAUDE.md +0 -0
  112. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/agent.mermaid +0 -0
  113. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/bindings.json +0 -0
  114. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/samples/triage-agent/uipath.json +0 -0
  115. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/_cli/__init__.py +0 -0
  116. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/_cli/_templates/openai_agents.json.template +0 -0
  117. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/chat/openai.py +0 -0
  118. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/middlewares.py +0 -0
  119. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/py.typed +0 -0
  120. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/config.py +0 -0
  121. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/src/uipath_openai_agents/runtime/errors.py +0 -0
  122. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/testcases/triage-agent/pyproject.toml +0 -0
  123. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/testcases/triage-agent/run.sh +0 -0
  124. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/testcases/triage-agent/src/assert.py +0 -0
  125. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/__init__.py +0 -0
  126. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/cli/__init__.py +0 -0
  127. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/cli/conftest.py +0 -0
  128. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/mocks/openai_agents.json +0 -0
  129. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/mocks/simple_agent_basic.py +0 -0
  130. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/mocks/simple_agent_translation.py +0 -0
  131. {uipath_openai_agents-0.0.1 → uipath_openai_agents-0.0.2}/tests/test_placeholder.py +0 -0
@@ -0,0 +1,146 @@
1
+ Metadata-Version: 2.4
2
+ Name: uipath-openai-agents
3
+ Version: 0.0.2
4
+ Summary: UiPath OpenAI Agents SDK
5
+ Project-URL: Homepage, https://uipath.com
6
+ Project-URL: Repository, https://github.com/UiPath/uipath-llamaindex-python
7
+ Maintainer-email: Marius Cosareanu <marius.cosareanu@uipath.com>, Cristian Pufu <cristian.pufu@uipath.com>
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Topic :: Software Development :: Build Tools
13
+ Requires-Python: >=3.11
14
+ Requires-Dist: aiosqlite>=0.20.0
15
+ Requires-Dist: openai-agents>=0.6.5
16
+ Requires-Dist: openai>=1.0.0
17
+ Requires-Dist: openinference-instrumentation-openai-agents>=1.4.0
18
+ Requires-Dist: uipath-runtime<0.6.0,>=0.5.0
19
+ Requires-Dist: uipath<2.6.0,>=2.5.0
20
+ Description-Content-Type: text/markdown
21
+
22
+ # UiPath OpenAI Agents Python SDK
23
+
24
+ [![PyPI - Version](https://img.shields.io/pypi/v/uipath-openai-agents)](https://pypi.org/project/uipath-openai-agents/)
25
+ [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-openai-agents.svg)](https://pypi.org/project/uipath-openai-agents/)
26
+ [![Python versions](https://img.shields.io/pypi/pyversions/uipath-openai-agents.svg)](https://pypi.org/project/uipath-openai-agents/)
27
+
28
+ A Python SDK that enables developers to build and deploy OpenAI Agents to the UiPath Cloud Platform. It provides programmatic interaction with UiPath Cloud Platform services.
29
+
30
+ This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python) and implements the [UiPath Runtime Protocol](https://github.com/UiPath/uipath-runtime-python).
31
+
32
+ Check out these [sample projects](https://github.com/UiPath/uipath-integrations-python/tree/main/packages/uipath-openai-agents/samples) to see the SDK in action.
33
+
34
+ ## Requirements
35
+
36
+ - Python 3.11 or higher
37
+ - UiPath Automation Cloud account
38
+
39
+ ## Installation
40
+
41
+ ```bash
42
+ pip install uipath-openai-agents
43
+ ```
44
+
45
+ using `uv`:
46
+
47
+ ```bash
48
+ uv add uipath-openai-agents
49
+ ```
50
+
51
+ ## Configuration
52
+
53
+ ### Environment Variables
54
+
55
+ Create a `.env` file in your project root with the following variables:
56
+
57
+ ```
58
+ UIPATH_URL=https://cloud.uipath.com/ACCOUNT_NAME/TENANT_NAME
59
+ UIPATH_ACCESS_TOKEN=YOUR_TOKEN_HERE
60
+ ```
61
+
62
+ ## Command Line Interface (CLI)
63
+
64
+ The SDK provides a command-line interface for creating, packaging, and deploying OpenAI Agents:
65
+
66
+ ### Authentication
67
+
68
+ ```bash
69
+ uipath auth
70
+ ```
71
+
72
+ This command opens a browser for authentication and creates/updates your `.env` file with the proper credentials.
73
+
74
+ ### Initialize a Project
75
+
76
+ ```bash
77
+ uipath init
78
+ ```
79
+
80
+ Running `uipath init` will process the agent definitions in the `openai_agents.json` file and create the corresponding `entry-points.json` file needed for deployment.
81
+
82
+ For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
83
+
84
+ ### Debug a Project
85
+
86
+ ```bash
87
+ uipath run AGENT [INPUT]
88
+ ```
89
+
90
+ Executes the agent with the provided JSON input arguments.
91
+
92
+ ### Package a Project
93
+
94
+ ```bash
95
+ uipath pack
96
+ ```
97
+
98
+ Packages your project into a `.nupkg` file that can be deployed to UiPath.
99
+
100
+ **Note:** Your `pyproject.toml` must include:
101
+
102
+ - A description field (avoid characters: &, <, >, ", ', ;)
103
+ - Author information
104
+
105
+ Example:
106
+
107
+ ```toml
108
+ description = "Your package description"
109
+ authors = [{name = "Your Name", email = "your.email@example.com"}]
110
+ ```
111
+
112
+ ### Publish a Package
113
+
114
+ ```bash
115
+ uipath publish
116
+ ```
117
+
118
+ Publishes the most recently created package to your UiPath Orchestrator.
119
+
120
+ ## Project Structure
121
+
122
+ To properly use the CLI for packaging and publishing, your project should include:
123
+
124
+ - A `pyproject.toml` file with project metadata
125
+ - A `openai_agents.json` file with your agent definitions (e.g., `"agents": {"agent": "main.py:agent"}`)
126
+ - A `entry-points.json` file (generated by `uipath init`)
127
+ - A `bindings.json` file (generated by `uipath init`) to configure resource overrides
128
+ - Any Python files needed for your automation
129
+
130
+ ## Development
131
+
132
+ ### Developer Tools
133
+
134
+ Check out [uipath-dev](https://github.com/uipath/uipath-dev-python) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
135
+
136
+ ### Setting Up a Development Environment
137
+
138
+ Please read our [contribution guidelines](https://github.com/UiPath/uipath-integrations-python/packages/uipath-openai-agents/blob/main/CONTRIBUTING.md) before submitting a pull request.
139
+
140
+ ### Special Thanks
141
+
142
+ A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
143
+
144
+ - [OpenAI](https://github.com/openai/openai-python) for providing a powerful framework for building AI agents.
145
+ - [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
146
+ - [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
@@ -0,0 +1,125 @@
1
+ # UiPath OpenAI Agents Python SDK
2
+
3
+ [![PyPI - Version](https://img.shields.io/pypi/v/uipath-openai-agents)](https://pypi.org/project/uipath-openai-agents/)
4
+ [![PyPI downloads](https://img.shields.io/pypi/dm/uipath-openai-agents.svg)](https://pypi.org/project/uipath-openai-agents/)
5
+ [![Python versions](https://img.shields.io/pypi/pyversions/uipath-openai-agents.svg)](https://pypi.org/project/uipath-openai-agents/)
6
+
7
+ A Python SDK that enables developers to build and deploy OpenAI Agents to the UiPath Cloud Platform. It provides programmatic interaction with UiPath Cloud Platform services.
8
+
9
+ This package is an extension to the [UiPath Python SDK](https://github.com/UiPath/uipath-python) and implements the [UiPath Runtime Protocol](https://github.com/UiPath/uipath-runtime-python).
10
+
11
+ Check out these [sample projects](https://github.com/UiPath/uipath-integrations-python/tree/main/packages/uipath-openai-agents/samples) to see the SDK in action.
12
+
13
+ ## Requirements
14
+
15
+ - Python 3.11 or higher
16
+ - UiPath Automation Cloud account
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ pip install uipath-openai-agents
22
+ ```
23
+
24
+ using `uv`:
25
+
26
+ ```bash
27
+ uv add uipath-openai-agents
28
+ ```
29
+
30
+ ## Configuration
31
+
32
+ ### Environment Variables
33
+
34
+ Create a `.env` file in your project root with the following variables:
35
+
36
+ ```
37
+ UIPATH_URL=https://cloud.uipath.com/ACCOUNT_NAME/TENANT_NAME
38
+ UIPATH_ACCESS_TOKEN=YOUR_TOKEN_HERE
39
+ ```
40
+
41
+ ## Command Line Interface (CLI)
42
+
43
+ The SDK provides a command-line interface for creating, packaging, and deploying OpenAI Agents:
44
+
45
+ ### Authentication
46
+
47
+ ```bash
48
+ uipath auth
49
+ ```
50
+
51
+ This command opens a browser for authentication and creates/updates your `.env` file with the proper credentials.
52
+
53
+ ### Initialize a Project
54
+
55
+ ```bash
56
+ uipath init
57
+ ```
58
+
59
+ Running `uipath init` will process the agent definitions in the `openai_agents.json` file and create the corresponding `entry-points.json` file needed for deployment.
60
+
61
+ For more details on the configuration format, see the [UiPath configuration specifications](https://github.com/UiPath/uipath-python/blob/main/specs/README.md).
62
+
63
+ ### Debug a Project
64
+
65
+ ```bash
66
+ uipath run AGENT [INPUT]
67
+ ```
68
+
69
+ Executes the agent with the provided JSON input arguments.
70
+
71
+ ### Package a Project
72
+
73
+ ```bash
74
+ uipath pack
75
+ ```
76
+
77
+ Packages your project into a `.nupkg` file that can be deployed to UiPath.
78
+
79
+ **Note:** Your `pyproject.toml` must include:
80
+
81
+ - A description field (avoid characters: &, <, >, ", ', ;)
82
+ - Author information
83
+
84
+ Example:
85
+
86
+ ```toml
87
+ description = "Your package description"
88
+ authors = [{name = "Your Name", email = "your.email@example.com"}]
89
+ ```
90
+
91
+ ### Publish a Package
92
+
93
+ ```bash
94
+ uipath publish
95
+ ```
96
+
97
+ Publishes the most recently created package to your UiPath Orchestrator.
98
+
99
+ ## Project Structure
100
+
101
+ To properly use the CLI for packaging and publishing, your project should include:
102
+
103
+ - A `pyproject.toml` file with project metadata
104
+ - A `openai_agents.json` file with your agent definitions (e.g., `"agents": {"agent": "main.py:agent"}`)
105
+ - A `entry-points.json` file (generated by `uipath init`)
106
+ - A `bindings.json` file (generated by `uipath init`) to configure resource overrides
107
+ - Any Python files needed for your automation
108
+
109
+ ## Development
110
+
111
+ ### Developer Tools
112
+
113
+ Check out [uipath-dev](https://github.com/uipath/uipath-dev-python) - an interactive terminal application for building, testing, and debugging UiPath Python runtimes, agents, and automation scripts.
114
+
115
+ ### Setting Up a Development Environment
116
+
117
+ Please read our [contribution guidelines](https://github.com/UiPath/uipath-integrations-python/packages/uipath-openai-agents/blob/main/CONTRIBUTING.md) before submitting a pull request.
118
+
119
+ ### Special Thanks
120
+
121
+ A huge thank-you to the open-source community and the maintainers of the libraries that make this project possible:
122
+
123
+ - [OpenAI](https://github.com/openai/openai-python) for providing a powerful framework for building AI agents.
124
+ - [OpenInference](https://github.com/Arize-ai/openinference) for observability and instrumentation support.
125
+ - [Pydantic](https://github.com/pydantic/pydantic) for reliable, typed configuration and validation.
@@ -106,7 +106,7 @@ Generate your first UiPath OpenAI agent:
106
106
  ✓ Created 'pyproject.toml' file.
107
107
  🔧 Please ensure to define OPENAI_API_KEY in your .env file.
108
108
  💡 Initialize project: uipath init
109
- 💡 Run agent: uipath run agent '{"message": "Hello"}'
109
+ 💡 Run agent: uipath run agent '{"messages": "Hello"}'
110
110
  ```
111
111
 
112
112
  This command creates the following files:
@@ -173,7 +173,7 @@ Execute the agent with a sample input:
173
173
  <!-- termynal -->
174
174
 
175
175
  ```shell
176
- > uipath run agent '{"message": "Hello"}'
176
+ > uipath run agent '{"messages": "Hello"}'
177
177
  {'response': 'Hello! How can I help you today?', 'agent_used': 'main'}
178
178
  ✓ Successful execution.
179
179
  ```
@@ -185,19 +185,19 @@ Depending on the shell you are using, it may be necessary to escape the input js
185
185
 
186
186
  /// tab | Bash/ZSH/PowerShell
187
187
  ```console
188
- uipath run agent '{"message": "Hello"}'
188
+ uipath run agent '{"messages": "Hello"}'
189
189
  ```
190
190
  ///
191
191
 
192
192
  /// tab | Windows CMD
193
193
  ```console
194
- uipath run agent "{""message"": ""Hello""}"
194
+ uipath run agent "{""messages"": ""Hello""}"
195
195
  ```
196
196
  ///
197
197
 
198
198
  /// tab | Windows PowerShell
199
199
  ```console
200
- uipath run agent '{\"message\":\"Hello\"}'
200
+ uipath run agent '{\"messages\":\"Hello\"}'
201
201
  ```
202
202
  ///
203
203
 
@@ -215,7 +215,7 @@ The `run` command can also take a .json file as an input. You can create a file
215
215
 
216
216
  ```json
217
217
  {
218
- "message": "Hello"
218
+ "messages": "Hello"
219
219
  }
220
220
  ```
221
221
 
@@ -275,7 +275,7 @@ Set the environment variables using the provided link.
275
275
  <!-- termynal -->
276
276
 
277
277
  ```shell
278
- > uipath invoke agent '{"message": "Hello"}'
278
+ > uipath invoke agent '{"messages": "Hello"}'
279
279
  ⠴ Loading configuration ...
280
280
  ⠴ Starting job ...
281
281
  ✨ Job started successfully!
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "uipath-openai-agents"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "UiPath OpenAI Agents SDK"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -70,7 +70,8 @@ plugins = [
70
70
  "pydantic.mypy"
71
71
  ]
72
72
  exclude = [
73
- "samples/.*"
73
+ "samples/.*",
74
+ "testcases/.*"
74
75
  ]
75
76
  follow_imports = "silent"
76
77
  warn_redundant_casts = true
@@ -0,0 +1,3 @@
1
+ {
2
+ "messages": "Tell me a joke"
3
+ }
@@ -0,0 +1,91 @@
1
+ from agents import Agent, AgentOutputSchema
2
+ from agents.models import _openai_shared
3
+ from pydantic import BaseModel, Field
4
+
5
+ from uipath_openai_agents.chat import UiPathChatOpenAI
6
+ from uipath_openai_agents.chat.supported_models import OpenAIModels
7
+
8
+ """
9
+ This example shows the agents-as-tools pattern adapted for UiPath coded agents.
10
+ The frontline agent receives a user message and then picks which agents to call,
11
+ as tools. In this case, it picks from a set of translation agents.
12
+
13
+ This sample demonstrates parameter inference - the Input/Output Pydantic models
14
+ are automatically extracted to generate rich schemas for UiPath integration.
15
+
16
+ Based on: https://github.com/openai/openai-agents-python/blob/main/examples/agent_patterns/tools.py
17
+ """
18
+
19
+
20
+ class TranslationOutput(BaseModel):
21
+ """Output model for the translation orchestrator."""
22
+
23
+ original_text: str = Field(description="The original English text")
24
+ translations: dict[str, str] = Field(
25
+ description="Dictionary mapping language names to translated text"
26
+ )
27
+ languages_used: list[str] = Field(
28
+ description="List of languages that were translated to"
29
+ )
30
+
31
+
32
+ def main() -> Agent:
33
+ """Configure UiPath OpenAI client and return the orchestrator agent."""
34
+ # Configure UiPath OpenAI client for agent execution
35
+ # This routes all OpenAI API calls through UiPath's LLM Gateway
36
+ MODEL = OpenAIModels.gpt_5_1_2025_11_13
37
+ uipath_openai_client = UiPathChatOpenAI(model_name=MODEL)
38
+ _openai_shared.set_default_openai_client(uipath_openai_client.async_client)
39
+
40
+ # Define specialized translation agents
41
+ spanish_agent = Agent(
42
+ name="spanish_agent",
43
+ instructions="You translate the user's message to Spanish",
44
+ handoff_description="An english to spanish translator",
45
+ model=MODEL,
46
+ )
47
+
48
+ french_agent = Agent(
49
+ name="french_agent",
50
+ instructions="You translate the user's message to French",
51
+ handoff_description="An english to french translator",
52
+ model=MODEL,
53
+ )
54
+
55
+ italian_agent = Agent(
56
+ name="italian_agent",
57
+ instructions="You translate the user's message to Italian",
58
+ handoff_description="An english to italian translator",
59
+ model=MODEL,
60
+ )
61
+
62
+ # Orchestrator agent that uses other agents as tools
63
+ # Uses output_type for structured outputs (native OpenAI Agents pattern)
64
+ # Note: Using AgentOutputSchema with strict_json_schema=False because
65
+ # dict[str, str] is not compatible with OpenAI's strict JSON schema mode
66
+ orchestrator_agent = Agent(
67
+ name="orchestrator_agent",
68
+ instructions=(
69
+ "You are a translation agent. You use the tools given to you to translate. "
70
+ "If asked for multiple translations, you call the relevant tools in order. "
71
+ "You never translate on your own, you always use the provided tools."
72
+ ),
73
+ tools=[
74
+ spanish_agent.as_tool(
75
+ tool_name="translate_to_spanish",
76
+ tool_description="Translate the user's message to Spanish",
77
+ ),
78
+ french_agent.as_tool(
79
+ tool_name="translate_to_french",
80
+ tool_description="Translate the user's message to French",
81
+ ),
82
+ italian_agent.as_tool(
83
+ tool_name="translate_to_italian",
84
+ tool_description="Translate the user's message to Italian",
85
+ ),
86
+ ],
87
+ output_type=AgentOutputSchema(TranslationOutput, strict_json_schema=False),
88
+ model=MODEL,
89
+ )
90
+
91
+ return orchestrator_agent
@@ -0,0 +1,5 @@
1
+ {
2
+ "agents": {
3
+ "agent": "main.py:main"
4
+ }
5
+ }
@@ -5,7 +5,7 @@ description = "Language routing agent example using OpenAI Agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
7
7
  dependencies = [
8
- "uipath-openai-agents>=0.1.0, <0.2.0",
8
+ "uipath-openai-agents>=0.0.1, <0.1.0",
9
9
  "openai-agents>=0.6.5",
10
10
  "uipath>=2.4.10",
11
11
  ]
@@ -14,6 +14,3 @@ dependencies = [
14
14
  dev = [
15
15
  "uipath-dev>=0.0.8",
16
16
  ]
17
-
18
- [tool.uv.sources]
19
- uipath-openai-agents = { path = "../..", editable = true }
@@ -21,7 +21,7 @@ dev = [
21
21
  requires-dist = [
22
22
  { name = "openai-agents", specifier = ">=0.6.5" },
23
23
  { name = "uipath", specifier = ">=2.4.10" },
24
- { name = "uipath-openai-agents", editable = "../../" },
24
+ { name = "uipath-openai-agents", specifier = ">=0.0.1,<0.1.0" },
25
25
  ]
26
26
 
27
27
  [package.metadata.requires-dev]
@@ -1136,6 +1136,48 @@ wheels = [
1136
1136
  { url = "https://files.pythonhosted.org/packages/17/db/16020e45d53366f2ed653ce0ddf959a647687d47180954de7654a133b910/openai_agents-0.6.5-py3-none-any.whl", hash = "sha256:c81d2eaa5c4563b8e893ba836fe170cf10ba974420ff283b4f001f84e7cb6e6b", size = 249352, upload-time = "2026-01-06T15:32:48.847Z" },
1137
1137
  ]
1138
1138
 
1139
+ [[package]]
1140
+ name = "openinference-instrumentation"
1141
+ version = "0.1.42"
1142
+ source = { registry = "https://pypi.org/simple" }
1143
+ dependencies = [
1144
+ { name = "openinference-semantic-conventions" },
1145
+ { name = "opentelemetry-api" },
1146
+ { name = "opentelemetry-sdk" },
1147
+ { name = "wrapt" },
1148
+ ]
1149
+ sdist = { url = "https://files.pythonhosted.org/packages/00/d0/b19061a21fd6127d2857c77744a36073bba9c1502d1d5e8517b708eb8b7c/openinference_instrumentation-0.1.42.tar.gz", hash = "sha256:2275babc34022e151b5492cfba41d3b12e28377f8e08cb45e5d64fe2d9d7fe37", size = 23954, upload-time = "2025-11-05T01:37:46.869Z" }
1150
+ wheels = [
1151
+ { url = "https://files.pythonhosted.org/packages/c3/71/43ee4616fc95dbd2f560550f199c6652a5eb93f84e8aa0039bc95c19cfe0/openinference_instrumentation-0.1.42-py3-none-any.whl", hash = "sha256:e7521ff90833ef7cc65db526a2f59b76a496180abeaaee30ec6abbbc0b43f8ec", size = 30086, upload-time = "2025-11-05T01:37:43.866Z" },
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "openinference-instrumentation-openai-agents"
1156
+ version = "1.4.0"
1157
+ source = { registry = "https://pypi.org/simple" }
1158
+ dependencies = [
1159
+ { name = "openinference-instrumentation" },
1160
+ { name = "openinference-semantic-conventions" },
1161
+ { name = "opentelemetry-api" },
1162
+ { name = "opentelemetry-instrumentation" },
1163
+ { name = "opentelemetry-semantic-conventions" },
1164
+ { name = "typing-extensions" },
1165
+ { name = "wrapt" },
1166
+ ]
1167
+ sdist = { url = "https://files.pythonhosted.org/packages/f4/40/ac0a3ad5040d2582156f6c0fa2b8f6233af79af295dab154d642d42aed69/openinference_instrumentation_openai_agents-1.4.0.tar.gz", hash = "sha256:2fd50d03f6d999b9793566a1f2787bf9e2cd3774fa8bf32542250dfc61e32d62", size = 12746, upload-time = "2025-12-04T19:58:36.319Z" }
1168
+ wheels = [
1169
+ { url = "https://files.pythonhosted.org/packages/c6/e5/299103b68f5427a7d11acd0f4804c5b3f3e9508a511f8f8078a43ad7e6bd/openinference_instrumentation_openai_agents-1.4.0-py3-none-any.whl", hash = "sha256:539361d0f3bdebdb1e898250fbba8e6173f2bce9d7ba007cf7934f10850f474b", size = 14411, upload-time = "2025-12-04T19:58:34.224Z" },
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "openinference-semantic-conventions"
1174
+ version = "0.1.25"
1175
+ source = { registry = "https://pypi.org/simple" }
1176
+ sdist = { url = "https://files.pythonhosted.org/packages/0b/68/81c8a0b90334ff11e4f285e4934c57f30bea3ef0c0b9f99b65e7b80fae3b/openinference_semantic_conventions-0.1.25.tar.gz", hash = "sha256:f0a8c2cfbd00195d1f362b4803518341e80867d446c2959bf1743f1894fce31d", size = 12767, upload-time = "2025-11-05T01:37:45.89Z" }
1177
+ wheels = [
1178
+ { url = "https://files.pythonhosted.org/packages/fd/3d/dd14ee2eb8a3f3054249562e76b253a1545c76adbbfd43a294f71acde5c3/openinference_semantic_conventions-0.1.25-py3-none-any.whl", hash = "sha256:3814240f3bd61f05d9562b761de70ee793d55b03bca1634edf57d7a2735af238", size = 10395, upload-time = "2025-11-05T01:37:43.697Z" },
1179
+ ]
1180
+
1139
1181
  [[package]]
1140
1182
  name = "opentelemetry-api"
1141
1183
  version = "1.39.1"
@@ -1849,7 +1891,7 @@ wheels = [
1849
1891
 
1850
1892
  [[package]]
1851
1893
  name = "textual"
1852
- version = "6.12.0"
1894
+ version = "7.3.0"
1853
1895
  source = { registry = "https://pypi.org/simple" }
1854
1896
  dependencies = [
1855
1897
  { name = "markdown-it-py", extra = ["linkify"] },
@@ -1859,9 +1901,9 @@ dependencies = [
1859
1901
  { name = "rich" },
1860
1902
  { name = "typing-extensions" },
1861
1903
  ]
1862
- sdist = { url = "https://files.pythonhosted.org/packages/39/55/29416ef63de4c37b37da217b94439a28496a4dc585209f5bf1437a61d120/textual-6.12.0.tar.gz", hash = "sha256:a32e8edbf6abdb0c42d486e96bdf419eb3aa378edb1b1271b84637f3dbd64c73", size = 1584182, upload-time = "2026-01-02T09:42:30.415Z" }
1904
+ sdist = { url = "https://files.pythonhosted.org/packages/6f/ee/620c887bfad9d6eba062dfa3b6b0e735e0259102e2667b19f21625ef598d/textual-7.3.0.tar.gz", hash = "sha256:3169e8ba5518a979b0771e60be380ab1a6c344f30a2126e360e6f38d009a3de4", size = 1590692, upload-time = "2026-01-15T16:32:02.342Z" }
1863
1905
  wheels = [
1864
- { url = "https://files.pythonhosted.org/packages/13/f8/2a6a6ff1d07788f635493867d5a4003dfecacad16af1fdc9814d10daca3d/textual-6.12.0-py3-none-any.whl", hash = "sha256:cf9ea9a54d213c7736efe9fef440c7f49218d4e6ab75279afd060eded9c567ec", size = 714912, upload-time = "2026-01-02T09:42:28.786Z" },
1906
+ { url = "https://files.pythonhosted.org/packages/c3/1f/abeb4e5cb36b99dd37db72beb2a74d58598ccb35aaadf14624ee967d4a6b/textual-7.3.0-py3-none-any.whl", hash = "sha256:db235cecf969c87fe5a9c04d83595f506affc9db81f3a53ab849534d726d330a", size = 716374, upload-time = "2026-01-15T16:31:58.233Z" },
1865
1907
  ]
1866
1908
 
1867
1909
  [[package]]
@@ -1929,7 +1971,7 @@ wheels = [
1929
1971
 
1930
1972
  [[package]]
1931
1973
  name = "uipath"
1932
- version = "2.4.10"
1974
+ version = "2.5.22"
1933
1975
  source = { registry = "https://pypi.org/simple" }
1934
1976
  dependencies = [
1935
1977
  { name = "applicationinsights" },
@@ -1950,81 +1992,66 @@ dependencies = [
1950
1992
  { name = "uipath-core" },
1951
1993
  { name = "uipath-runtime" },
1952
1994
  ]
1953
- sdist = { url = "https://files.pythonhosted.org/packages/82/a6/025a83bab5a030566204757578da3059e65dd64498c44e1ff29153f66134/uipath-2.4.10.tar.gz", hash = "sha256:8d9e4c265fdc518292fa48aea286429e62479d5e26bacee034fa6b7786d41a72", size = 3455666, upload-time = "2026-01-09T22:29:34.656Z" }
1995
+ sdist = { url = "https://files.pythonhosted.org/packages/0a/d2/056e2c92b06b3f99ffd7008e6cf6952d42c77946bd34cc1b085d8e16166c/uipath-2.5.22.tar.gz", hash = "sha256:2ac77b058717bfc7c3082d4b07e45b2e673c21477efdfb59820b04254365c391", size = 3898304, upload-time = "2026-01-21T08:40:50.727Z" }
1954
1996
  wheels = [
1955
- { url = "https://files.pythonhosted.org/packages/30/a5/4df18efe582e78e3d99e93760c8178aa94ba9b54c6cd7e2429eff0ac69a3/uipath-2.4.10-py3-none-any.whl", hash = "sha256:11708d4f92eb8bca69cb3194705ef03b32921580639f05730b92a6514f36f3f8", size = 423800, upload-time = "2026-01-09T22:29:33.091Z" },
1997
+ { url = "https://files.pythonhosted.org/packages/68/1e/8175b5bffb056188e3abc9c6359904f57212cb9dbe2316950b440f4e8e2b/uipath-2.5.22-py3-none-any.whl", hash = "sha256:8cc32b28e356de114ce3406884d48071c20c3bc949da773aba24a7cac3c008df", size = 448673, upload-time = "2026-01-21T08:40:48.883Z" },
1956
1998
  ]
1957
1999
 
1958
2000
  [[package]]
1959
2001
  name = "uipath-core"
1960
- version = "0.1.4"
2002
+ version = "0.1.9"
1961
2003
  source = { registry = "https://pypi.org/simple" }
1962
2004
  dependencies = [
1963
2005
  { name = "opentelemetry-instrumentation" },
1964
2006
  { name = "opentelemetry-sdk" },
1965
2007
  { name = "pydantic" },
1966
2008
  ]
1967
- sdist = { url = "https://files.pythonhosted.org/packages/db/ef/44b9b0adb378e0e988b621b72af55008dbfb166179412cba1fe54ab4b692/uipath_core-0.1.4.tar.gz", hash = "sha256:6100eb5299b30b145e557e3dbc716141bbaa92cd37633d36257c7e3f90ce578f", size = 96025, upload-time = "2025-12-16T14:25:01.62Z" }
2009
+ sdist = { url = "https://files.pythonhosted.org/packages/64/29/dd69ab6e86882a05a20ba0359f90197a2f746310cde9618b93b66c8e20a6/uipath_core-0.1.9.tar.gz", hash = "sha256:32e897490363d76aaf2c323a80c3e777698b4a548bea35e98679c14a26a74fc7", size = 101369, upload-time = "2026-01-20T15:59:04.047Z" }
1968
2010
  wheels = [
1969
- { url = "https://files.pythonhosted.org/packages/09/c3/e64ea37ba8aa56cfae4a15589652a9dc4f66889e4d19788ca5e1b034b46f/uipath_core-0.1.4-py3-none-any.whl", hash = "sha256:574d6fe0314f70c12de8b6a3c5ab05a6191f6a8b9087c1d1a6352e67765f2f72", size = 30431, upload-time = "2025-12-16T14:25:00.174Z" },
2011
+ { url = "https://files.pythonhosted.org/packages/39/99/806c73e350e178e950d0b4beeb277a3069e1d539d530365f88ed40ae5037/uipath_core-0.1.9-py3-none-any.whl", hash = "sha256:b2e66475577c21c22262bb211bc89426fed1616967f7c7e53a7cfac08c2b1447", size = 31924, upload-time = "2026-01-20T15:59:02.806Z" },
1970
2012
  ]
1971
2013
 
1972
2014
  [[package]]
1973
2015
  name = "uipath-dev"
1974
- version = "0.0.15"
2016
+ version = "0.0.19"
1975
2017
  source = { registry = "https://pypi.org/simple" }
1976
2018
  dependencies = [
1977
2019
  { name = "pyperclip" },
1978
2020
  { name = "textual" },
1979
2021
  { name = "uipath-runtime" },
1980
2022
  ]
1981
- sdist = { url = "https://files.pythonhosted.org/packages/85/44/bb0e0a310f11e0fac3102ddb661e0b00d099df2a0c94d52ea1829728c815/uipath_dev-0.0.15.tar.gz", hash = "sha256:5ee77abc9ce54552a45a787c1cdaf656534ace89b094ea501e0f021a61ba6841", size = 7584380, upload-time = "2026-01-03T06:10:17.795Z" }
2023
+ sdist = { url = "https://files.pythonhosted.org/packages/5d/31/2afbf77564d232287ca49104441218119139f501bd594a96e9ab5f602336/uipath_dev-0.0.19.tar.gz", hash = "sha256:16a0169bd15de75cc9fc36891e7e238bc9b35253ad55417977c9dd647db07188", size = 7585114, upload-time = "2026-01-20T16:16:22.19Z" }
1982
2024
  wheels = [
1983
- { url = "https://files.pythonhosted.org/packages/59/ae/62f46456edd081bf8da257ba092ded701f765162a7d03028b22fb4b81d87/uipath_dev-0.0.15-py3-none-any.whl", hash = "sha256:7cf76f606194a480a7a5ad2bbcff4586a591577b05a0affee3cd8d064fb735b9", size = 33703, upload-time = "2026-01-03T06:10:15.983Z" },
2025
+ { url = "https://files.pythonhosted.org/packages/16/ac/50bd610e78b68f17bf1929bc05cca1163eef17d456faeb0f52cb0c4b54e3/uipath_dev-0.0.19-py3-none-any.whl", hash = "sha256:bf21bbb03d38a200550ffd527383326211644f3f0fe62cc394905339a56d5bd7", size = 34500, upload-time = "2026-01-20T16:16:20.525Z" },
1984
2026
  ]
1985
2027
 
1986
2028
  [[package]]
1987
2029
  name = "uipath-openai-agents"
1988
- version = "0.1.0"
1989
- source = { editable = "../../" }
2030
+ version = "0.0.1"
2031
+ source = { registry = "https://pypi.org/simple" }
1990
2032
  dependencies = [
1991
2033
  { name = "aiosqlite" },
1992
2034
  { name = "openai" },
1993
2035
  { name = "openai-agents" },
2036
+ { name = "openinference-instrumentation-openai-agents" },
1994
2037
  { name = "uipath" },
1995
2038
  { name = "uipath-runtime" },
1996
2039
  ]
1997
-
1998
- [package.metadata]
1999
- requires-dist = [
2000
- { name = "aiosqlite", specifier = ">=0.20.0" },
2001
- { name = "openai", specifier = ">=1.0.0" },
2002
- { name = "openai-agents", specifier = ">=0.6.5" },
2003
- { name = "uipath", specifier = ">=2.4.0,<2.5.0" },
2004
- { name = "uipath-runtime", specifier = ">=0.4.0,<0.5.0" },
2005
- ]
2006
-
2007
- [package.metadata.requires-dev]
2008
- dev = [
2009
- { name = "mypy", specifier = ">=1.14.1" },
2010
- { name = "pre-commit", specifier = ">=4.1.0" },
2011
- { name = "pytest", specifier = ">=7.4.0" },
2012
- { name = "pytest-asyncio", specifier = ">=1.0.0" },
2013
- { name = "pytest-cov", specifier = ">=4.1.0" },
2014
- { name = "pytest-mock", specifier = ">=3.11.1" },
2015
- { name = "ruff", specifier = ">=0.9.4" },
2040
+ sdist = { url = "https://files.pythonhosted.org/packages/50/0c/76e3fa61c8b2aa552d659ed3b6840bbf980a3e5fd33cc7cbfb62e4176885/uipath_openai_agents-0.0.1.tar.gz", hash = "sha256:e2e357e78da30b7c3e5388fd41832fa20d866b12271e6e078e57d08b178ce64b", size = 660107, upload-time = "2026-01-20T14:57:28.73Z" }
2041
+ wheels = [
2042
+ { url = "https://files.pythonhosted.org/packages/dd/ae/c0fb2d2ee854064c4aaa121ed96e5e010c475765e62a1ba2073362c74081/uipath_openai_agents-0.0.1-py3-none-any.whl", hash = "sha256:61fd3e0b34ce902484d89607369adb476697c8d51bde96f49c7dea5e5d0c7ba6", size = 31634, upload-time = "2026-01-20T14:57:27.441Z" },
2016
2043
  ]
2017
2044
 
2018
2045
  [[package]]
2019
2046
  name = "uipath-runtime"
2020
- version = "0.4.0"
2047
+ version = "0.5.1"
2021
2048
  source = { registry = "https://pypi.org/simple" }
2022
2049
  dependencies = [
2023
2050
  { name = "uipath-core" },
2024
2051
  ]
2025
- sdist = { url = "https://files.pythonhosted.org/packages/78/6f/683b258720c18f8ec0e68ec712a05f42ede6ecf63e75710aa555b8d52092/uipath_runtime-0.4.0.tar.gz", hash = "sha256:129933b08c6f589d13c2c0e7045ddf61ca144029340c1482134d127dd15563e3", size = 99934, upload-time = "2026-01-03T05:44:33.712Z" }
2052
+ sdist = { url = "https://files.pythonhosted.org/packages/a8/ce/d59fb6213c5a0d2efef0f2fa8274052187512d5e12703f6fd2fa5a66f132/uipath_runtime-0.5.1.tar.gz", hash = "sha256:04e649d07fc8caed134eec69ac6544eb6aa46ddf5bbc1b2191f2d599d627fd58", size = 103226, upload-time = "2026-01-17T00:16:43.961Z" }
2026
2053
  wheels = [
2027
- { url = "https://files.pythonhosted.org/packages/45/46/402708653a197c7f0b1d9de66b235f8a5798f814c775bab575cd2d7e2539/uipath_runtime-0.4.0-py3-none-any.whl", hash = "sha256:f49a23ed24f7cfaa736f99a5763bcf314234c67b727c40ec891a0a3d10140027", size = 38359, upload-time = "2026-01-03T05:44:31.817Z" },
2054
+ { url = "https://files.pythonhosted.org/packages/7c/cf/ddc5251090b640f11d7be85a6e7b78e95133d024ecd580e5f9dd20e3bc8e/uipath_runtime-0.5.1-py3-none-any.whl", hash = "sha256:0335326430952f31f30a79a989a93a9ad56bd8a69664539ecabd325fd1ac4adc", size = 40209, upload-time = "2026-01-17T00:16:42.3Z" },
2028
2055
  ]
2029
2056
 
2030
2057
  [[package]]