openai-agents 0.0.19__py3-none-any.whl → 0.2.0__py3-none-any.whl
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.
Potentially problematic release.
This version of openai-agents might be problematic. Click here for more details.
- agents/__init__.py +5 -2
- agents/_run_impl.py +35 -1
- agents/agent.py +65 -29
- agents/extensions/models/litellm_model.py +7 -3
- agents/function_schema.py +11 -1
- agents/guardrail.py +5 -1
- agents/handoffs.py +14 -0
- agents/lifecycle.py +26 -17
- agents/mcp/__init__.py +13 -1
- agents/mcp/server.py +173 -16
- agents/mcp/util.py +89 -6
- agents/memory/__init__.py +3 -0
- agents/memory/session.py +369 -0
- agents/model_settings.py +60 -6
- agents/models/chatcmpl_converter.py +31 -2
- agents/models/chatcmpl_stream_handler.py +128 -16
- agents/models/openai_chatcompletions.py +12 -10
- agents/models/openai_responses.py +25 -8
- agents/realtime/README.md +3 -0
- agents/realtime/__init__.py +174 -0
- agents/realtime/agent.py +80 -0
- agents/realtime/config.py +128 -0
- agents/realtime/events.py +216 -0
- agents/realtime/items.py +91 -0
- agents/realtime/model.py +69 -0
- agents/realtime/model_events.py +159 -0
- agents/realtime/model_inputs.py +100 -0
- agents/realtime/openai_realtime.py +584 -0
- agents/realtime/runner.py +118 -0
- agents/realtime/session.py +502 -0
- agents/repl.py +1 -4
- agents/run.py +131 -10
- agents/tool.py +30 -6
- agents/tool_context.py +16 -3
- agents/tracing/__init__.py +1 -2
- agents/tracing/processor_interface.py +1 -1
- agents/voice/models/openai_stt.py +1 -1
- agents/voice/pipeline.py +6 -0
- agents/voice/workflow.py +8 -0
- {openai_agents-0.0.19.dist-info → openai_agents-0.2.0.dist-info}/METADATA +133 -8
- {openai_agents-0.0.19.dist-info → openai_agents-0.2.0.dist-info}/RECORD +43 -29
- {openai_agents-0.0.19.dist-info → openai_agents-0.2.0.dist-info}/WHEEL +0 -0
- {openai_agents-0.0.19.dist-info → openai_agents-0.2.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: openai-agents
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: OpenAI Agents SDK
|
|
5
|
-
Project-URL: Homepage, https://github.
|
|
5
|
+
Project-URL: Homepage, https://openai.github.io/openai-agents-python/
|
|
6
6
|
Project-URL: Repository, https://github.com/openai/openai-agents-python
|
|
7
7
|
Author-email: OpenAI <support@openai.com>
|
|
8
8
|
License-Expression: MIT
|
|
@@ -15,18 +15,21 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
19
20
|
Classifier: Typing :: Typed
|
|
20
21
|
Requires-Python: >=3.9
|
|
21
22
|
Requires-Dist: griffe<2,>=1.5.6
|
|
22
23
|
Requires-Dist: mcp<2,>=1.9.4; python_version >= '3.10'
|
|
23
|
-
Requires-Dist: openai
|
|
24
|
+
Requires-Dist: openai<2,>=1.93.1
|
|
24
25
|
Requires-Dist: pydantic<3,>=2.10
|
|
25
26
|
Requires-Dist: requests<3,>=2.0
|
|
26
27
|
Requires-Dist: types-requests<3,>=2.0
|
|
27
28
|
Requires-Dist: typing-extensions<5,>=4.12.2
|
|
28
29
|
Provides-Extra: litellm
|
|
29
30
|
Requires-Dist: litellm<2,>=1.67.4.post1; extra == 'litellm'
|
|
31
|
+
Provides-Extra: realtime
|
|
32
|
+
Requires-Dist: websockets<16,>=15.0; extra == 'realtime'
|
|
30
33
|
Provides-Extra: viz
|
|
31
34
|
Requires-Dist: graphviz>=0.17; extra == 'viz'
|
|
32
35
|
Provides-Extra: voice
|
|
@@ -48,22 +51,138 @@ The OpenAI Agents SDK is a lightweight yet powerful framework for building multi
|
|
|
48
51
|
1. [**Agents**](https://openai.github.io/openai-agents-python/agents): LLMs configured with instructions, tools, guardrails, and handoffs
|
|
49
52
|
2. [**Handoffs**](https://openai.github.io/openai-agents-python/handoffs/): A specialized tool call used by the Agents SDK for transferring control between agents
|
|
50
53
|
3. [**Guardrails**](https://openai.github.io/openai-agents-python/guardrails/): Configurable safety checks for input and output validation
|
|
51
|
-
4. [**
|
|
54
|
+
4. [**Sessions**](#sessions): Automatic conversation history management across agent runs
|
|
55
|
+
5. [**Tracing**](https://openai.github.io/openai-agents-python/tracing/): Built-in tracking of agent runs, allowing you to view, debug and optimize your workflows
|
|
52
56
|
|
|
53
57
|
Explore the [examples](examples) directory to see the SDK in action, and read our [documentation](https://openai.github.io/openai-agents-python/) for more details.
|
|
54
58
|
|
|
59
|
+
## Sessions
|
|
60
|
+
|
|
61
|
+
The Agents SDK provides built-in session memory to automatically maintain conversation history across multiple agent runs, eliminating the need to manually handle `.to_input_list()` between turns.
|
|
62
|
+
|
|
63
|
+
### Quick start
|
|
64
|
+
|
|
65
|
+
```python
|
|
66
|
+
from agents import Agent, Runner, SQLiteSession
|
|
67
|
+
|
|
68
|
+
# Create agent
|
|
69
|
+
agent = Agent(
|
|
70
|
+
name="Assistant",
|
|
71
|
+
instructions="Reply very concisely.",
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
# Create a session instance
|
|
75
|
+
session = SQLiteSession("conversation_123")
|
|
76
|
+
|
|
77
|
+
# First turn
|
|
78
|
+
result = await Runner.run(
|
|
79
|
+
agent,
|
|
80
|
+
"What city is the Golden Gate Bridge in?",
|
|
81
|
+
session=session
|
|
82
|
+
)
|
|
83
|
+
print(result.final_output) # "San Francisco"
|
|
84
|
+
|
|
85
|
+
# Second turn - agent automatically remembers previous context
|
|
86
|
+
result = await Runner.run(
|
|
87
|
+
agent,
|
|
88
|
+
"What state is it in?",
|
|
89
|
+
session=session
|
|
90
|
+
)
|
|
91
|
+
print(result.final_output) # "California"
|
|
92
|
+
|
|
93
|
+
# Also works with synchronous runner
|
|
94
|
+
result = Runner.run_sync(
|
|
95
|
+
agent,
|
|
96
|
+
"What's the population?",
|
|
97
|
+
session=session
|
|
98
|
+
)
|
|
99
|
+
print(result.final_output) # "Approximately 39 million"
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Session options
|
|
103
|
+
|
|
104
|
+
- **No memory** (default): No session memory when session parameter is omitted
|
|
105
|
+
- **`session: Session = DatabaseSession(...)`**: Use a Session instance to manage conversation history
|
|
106
|
+
|
|
107
|
+
```python
|
|
108
|
+
from agents import Agent, Runner, SQLiteSession
|
|
109
|
+
|
|
110
|
+
# Custom SQLite database file
|
|
111
|
+
session = SQLiteSession("user_123", "conversations.db")
|
|
112
|
+
agent = Agent(name="Assistant")
|
|
113
|
+
|
|
114
|
+
# Different session IDs maintain separate conversation histories
|
|
115
|
+
result1 = await Runner.run(
|
|
116
|
+
agent,
|
|
117
|
+
"Hello",
|
|
118
|
+
session=session
|
|
119
|
+
)
|
|
120
|
+
result2 = await Runner.run(
|
|
121
|
+
agent,
|
|
122
|
+
"Hello",
|
|
123
|
+
session=SQLiteSession("user_456", "conversations.db")
|
|
124
|
+
)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### Custom session implementations
|
|
128
|
+
|
|
129
|
+
You can implement your own session memory by creating a class that follows the `Session` protocol:
|
|
130
|
+
|
|
131
|
+
```python
|
|
132
|
+
from agents.memory import Session
|
|
133
|
+
from typing import List
|
|
134
|
+
|
|
135
|
+
class MyCustomSession:
|
|
136
|
+
"""Custom session implementation following the Session protocol."""
|
|
137
|
+
|
|
138
|
+
def __init__(self, session_id: str):
|
|
139
|
+
self.session_id = session_id
|
|
140
|
+
# Your initialization here
|
|
141
|
+
|
|
142
|
+
async def get_items(self, limit: int | None = None) -> List[dict]:
|
|
143
|
+
# Retrieve conversation history for the session
|
|
144
|
+
pass
|
|
145
|
+
|
|
146
|
+
async def add_items(self, items: List[dict]) -> None:
|
|
147
|
+
# Store new items for the session
|
|
148
|
+
pass
|
|
149
|
+
|
|
150
|
+
async def pop_item(self) -> dict | None:
|
|
151
|
+
# Remove and return the most recent item from the session
|
|
152
|
+
pass
|
|
153
|
+
|
|
154
|
+
async def clear_session(self) -> None:
|
|
155
|
+
# Clear all items for the session
|
|
156
|
+
pass
|
|
157
|
+
|
|
158
|
+
# Use your custom session
|
|
159
|
+
agent = Agent(name="Assistant")
|
|
160
|
+
result = await Runner.run(
|
|
161
|
+
agent,
|
|
162
|
+
"Hello",
|
|
163
|
+
session=MyCustomSession("my_session")
|
|
164
|
+
)
|
|
165
|
+
```
|
|
166
|
+
|
|
55
167
|
## Get started
|
|
56
168
|
|
|
57
169
|
1. Set up your Python environment
|
|
58
170
|
|
|
59
|
-
|
|
171
|
+
- Option A: Using venv (traditional method)
|
|
172
|
+
```bash
|
|
60
173
|
python -m venv env
|
|
61
|
-
source env/bin/activate
|
|
174
|
+
source env/bin/activate # On Windows: env\Scripts\activate
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
- Option B: Using uv (recommended)
|
|
178
|
+
```bash
|
|
179
|
+
uv venv
|
|
180
|
+
source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
|
62
181
|
```
|
|
63
182
|
|
|
64
183
|
2. Install Agents SDK
|
|
65
184
|
|
|
66
|
-
```
|
|
185
|
+
```bash
|
|
67
186
|
pip install openai-agents
|
|
68
187
|
```
|
|
69
188
|
|
|
@@ -86,7 +205,7 @@ print(result.final_output)
|
|
|
86
205
|
|
|
87
206
|
(_If running this, ensure you set the `OPENAI_API_KEY` environment variable_)
|
|
88
207
|
|
|
89
|
-
(_For Jupyter notebook users, see [hello_world_jupyter.
|
|
208
|
+
(_For Jupyter notebook users, see [hello_world_jupyter.ipynb](examples/basic/hello_world_jupyter.ipynb)_)
|
|
90
209
|
|
|
91
210
|
## Handoffs example
|
|
92
211
|
|
|
@@ -199,10 +318,16 @@ make sync
|
|
|
199
318
|
|
|
200
319
|
2. (After making changes) lint/test
|
|
201
320
|
|
|
321
|
+
```
|
|
322
|
+
make check # run tests linter and typechecker
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
Or to run them individually:
|
|
202
326
|
```
|
|
203
327
|
make tests # run tests
|
|
204
328
|
make mypy # run typechecker
|
|
205
329
|
make lint # run linter
|
|
330
|
+
make format-check # run style checker
|
|
206
331
|
```
|
|
207
332
|
|
|
208
333
|
## Acknowledgements
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
agents/__init__.py,sha256=
|
|
1
|
+
agents/__init__.py,sha256=KO_SBzwwg7cXPvMNDD1_lRhFIVR6E2RmyU624sAEEVo,7781
|
|
2
2
|
agents/_config.py,sha256=ANrM7GP2VSQehDkMc9qocxkUlPwqU-i5sieMJyEwxpM,796
|
|
3
3
|
agents/_debug.py,sha256=7OKys2lDjeCtGggTkM53m_8vw0WIr3yt-_JPBDAnsw0,608
|
|
4
|
-
agents/_run_impl.py,sha256=
|
|
5
|
-
agents/agent.py,sha256=
|
|
4
|
+
agents/_run_impl.py,sha256=LlUM0YqZWmqz4WoWu0YK1Du6k09TX-ot94sikM16Y4U,44507
|
|
5
|
+
agents/agent.py,sha256=Ex0D1YCEVIaodheuIXmyoQs-GlR6BNV9S3ClfY2B9EA,13376
|
|
6
6
|
agents/agent_output.py,sha256=cVIVwpsgOfloCHL0BD9DSCBCzW_s3T4LesDhvJRu2Uc,7127
|
|
7
7
|
agents/computer.py,sha256=XD44UgiUWSfniv-xKwwDP6wFKVwBiZkpaL1hO-0-7ZA,2516
|
|
8
8
|
agents/exceptions.py,sha256=NHMdHE0cZ6AdA6UgUylTzVHAX05Ol1CkO814a0FdZcs,2862
|
|
9
|
-
agents/function_schema.py,sha256=
|
|
10
|
-
agents/guardrail.py,sha256=
|
|
11
|
-
agents/handoffs.py,sha256=
|
|
9
|
+
agents/function_schema.py,sha256=JvMh356N60_c3hj7BXySuM7eqVwP00jealR7rdPnl60,13590
|
|
10
|
+
agents/guardrail.py,sha256=viyExAH3vkQkv18444Mek-g2tnoGVrNAclw0Nxi1RPE,9429
|
|
11
|
+
agents/handoffs.py,sha256=TSW2cbFVbuwweFhP8QQP01OWctFGYbi6DszcO7NZHME,10095
|
|
12
12
|
agents/items.py,sha256=lXFc_gKLEqwXIcyMKk4Q-6Rjry0MWD93xlvk4Y1W970,9695
|
|
13
|
-
agents/lifecycle.py,sha256=
|
|
13
|
+
agents/lifecycle.py,sha256=C1LSoCa_0zf0nt7yI3SKL5bAAG4Cso6--Gmk8S8zpJg,3111
|
|
14
14
|
agents/logger.py,sha256=p_ef7vWKpBev5FFybPJjhrCCQizK08Yy1A2EDO1SNNg,60
|
|
15
|
-
agents/model_settings.py,sha256=
|
|
15
|
+
agents/model_settings.py,sha256=98MlYQ35AVJM0OkTe0HHETKCRbh7hDdVbtYkIQibc3I,6043
|
|
16
16
|
agents/prompts.py,sha256=Ss5y_7s2HFcRAOAKu4WTxQszs5ybI8TfbxgEYdnj9sg,2231
|
|
17
17
|
agents/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
18
|
-
agents/repl.py,sha256=
|
|
18
|
+
agents/repl.py,sha256=FKZlkGfw6QxItTkjFkCAQwXuV_pn69DIamGd3PiKQFk,2361
|
|
19
19
|
agents/result.py,sha256=YCGYHoc5X1_vLKu5QiK6F8C1ZXI3tTfLXaZoqbYgUMA,10753
|
|
20
|
-
agents/run.py,sha256=
|
|
20
|
+
agents/run.py,sha256=GNVMvEs0cw5oU6OISrN5YYEVYVF-KduMt3nfpgBynLs,50792
|
|
21
21
|
agents/run_context.py,sha256=vuSUQM8O4CLensQY27-22fOqECnw7yvwL9U3WO8b_bk,851
|
|
22
22
|
agents/stream_events.py,sha256=VFyTu-DT3ZMnHLtMbg-X_lxec0doQxNfx-hVxLB0BpI,1700
|
|
23
23
|
agents/strict_schema.py,sha256=_KuEJkglmq-Fj3HSeYP4WqTvqrxbSKu6gezfz5Brhh0,5775
|
|
24
|
-
agents/tool.py,sha256=
|
|
25
|
-
agents/tool_context.py,sha256=
|
|
24
|
+
agents/tool.py,sha256=m0NHppRFBNTb4mYrlLjGSY-dBOu5KgnIvVpShPBuhps,16542
|
|
25
|
+
agents/tool_context.py,sha256=lbnctijZeanXAThddkklF7vDrXK1Ie2_wx6JZPCOihI,1434
|
|
26
26
|
agents/usage.py,sha256=GB83eElU-DVkdutGObGDSX5vJNy8ssu3Xbpp5LlHfwU,1643
|
|
27
27
|
agents/version.py,sha256=_1knUwzSK-HUeZTpRUkk6Z-CIcurqXuEplbV5TLJ08E,230
|
|
28
28
|
agents/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -30,26 +30,40 @@ agents/extensions/handoff_filters.py,sha256=2cXxu1JROez96CpTiGuT9PIuaIrIE8ksP01f
|
|
|
30
30
|
agents/extensions/handoff_prompt.py,sha256=oGWN0uNh3Z1L7E-Ev2up8W084fFrDNOsLDy7P6bcmic,1006
|
|
31
31
|
agents/extensions/visualization.py,sha256=g2eEwW22qe3A4WtH37LwaHhK3QZE9FYHVw9IcOVpwbk,4699
|
|
32
32
|
agents/extensions/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
agents/extensions/models/litellm_model.py,sha256=
|
|
33
|
+
agents/extensions/models/litellm_model.py,sha256=Gmk7M4KGZ-Mfk2LUCzHL-FMm5C6_n41QzwSMVxYcfE8,15014
|
|
34
34
|
agents/extensions/models/litellm_provider.py,sha256=wTm00Anq8YoNb9AnyT0JOunDG-HCDm_98ORNy7aNJdw,928
|
|
35
|
-
agents/mcp/__init__.py,sha256=
|
|
36
|
-
agents/mcp/server.py,sha256=
|
|
37
|
-
agents/mcp/util.py,sha256=
|
|
35
|
+
agents/mcp/__init__.py,sha256=yHmmYlrmEHzUas1inRLKL2iPqbb_-107G3gKe_tyg4I,750
|
|
36
|
+
agents/mcp/server.py,sha256=UaiVAjTMmuiM4pN-1JPheSVkQ5ixPOCUAOLFPmQCQ8g,21341
|
|
37
|
+
agents/mcp/util.py,sha256=il-dBvf9zewaOI5wkD4G93ThZWrDjk5B9fRDfuH6tyA,7880
|
|
38
|
+
agents/memory/__init__.py,sha256=bo2Rb3PqwSCo9PhBVVJOjvjMM1TfytuDPAFEDADYwwA,84
|
|
39
|
+
agents/memory/session.py,sha256=9RQ1I7qGh_9DzsyUd9srSPrxRBlw7jks-67NxYqKvvs,13060
|
|
38
40
|
agents/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
41
|
agents/models/_openai_shared.py,sha256=4Ngwo2Fv2RXY61Pqck1cYPkSln2tDnb8Ai-ao4QG-iE,836
|
|
40
|
-
agents/models/chatcmpl_converter.py,sha256=
|
|
42
|
+
agents/models/chatcmpl_converter.py,sha256=bsxIQaPoknPg5li-ey2WrW8BI7Nx7oCIslkwB7-TqwM,19415
|
|
41
43
|
agents/models/chatcmpl_helpers.py,sha256=eIWySobaH7I0AQijAz5i-_rtsXrSvmEHD567s_8Zw1o,1318
|
|
42
|
-
agents/models/chatcmpl_stream_handler.py,sha256=
|
|
44
|
+
agents/models/chatcmpl_stream_handler.py,sha256=K3HvhbT1JNtsmbsRK_I6aRkzEbLPhRitm-y6WQIhxHk,19119
|
|
43
45
|
agents/models/fake_id.py,sha256=lbXjUUSMeAQ8eFx4V5QLUnBClHE6adJlYYav55RlG5w,268
|
|
44
46
|
agents/models/interface.py,sha256=TpY_GEk3LLMozCcYAEcC-Y_VRpI3pwE7A7ZM317mk7M,3839
|
|
45
47
|
agents/models/multi_provider.py,sha256=aiDbls5G4YomPfN6qH1pGlj41WS5jlDp2T82zm6qcnM,5578
|
|
46
|
-
agents/models/openai_chatcompletions.py,sha256=
|
|
48
|
+
agents/models/openai_chatcompletions.py,sha256=Br7nWsibVvMr0jff6H6adpe_AjYTgLgoAu6lgQ6LZO8,12191
|
|
47
49
|
agents/models/openai_provider.py,sha256=NMxTNaoTa329GrA7jj51LC02pb_e2eFh-PCvWADJrkY,3478
|
|
48
|
-
agents/models/openai_responses.py,sha256=
|
|
49
|
-
agents/
|
|
50
|
+
agents/models/openai_responses.py,sha256=SkRkwoVwLGfAbBn6YT2nDTmblgvTHTUSzBFQbGXH7W4,16715
|
|
51
|
+
agents/realtime/README.md,sha256=5YCYXH5ULmlWoWo1PE9TlbHjeYgjnp-xY8ZssSFY2Vk,126
|
|
52
|
+
agents/realtime/__init__.py,sha256=4GFMAMEuEn1rsc_22UHBQwdWTwg8oJ9Kei98hLK30b8,4729
|
|
53
|
+
agents/realtime/agent.py,sha256=HskyCefaXiDCHd67M3wxgweAdYDESYHNTjtV5BnaVmM,3360
|
|
54
|
+
agents/realtime/config.py,sha256=inaRs7ZCySI0SPjJvlILw9H5T7ow1SM4uJPpwypksuY,3853
|
|
55
|
+
agents/realtime/events.py,sha256=bOyO7Yv0g_6StXKqAzapNTOq8GdaOuQqj3BbtXNfHU4,5090
|
|
56
|
+
agents/realtime/items.py,sha256=t6RHVa84qMs1WGtxhg-fCE3ARAAn5WZoPVhlNGZKFi0,2262
|
|
57
|
+
agents/realtime/model.py,sha256=YwMBwtj33Z6uADnz1AoYg4wSfmpfYdZNq7ZaK8hlekw,2188
|
|
58
|
+
agents/realtime/model_events.py,sha256=JDh70uDctVuwex5EiYUdWhqQvBarN3ge7eREd1aUznU,3386
|
|
59
|
+
agents/realtime/model_inputs.py,sha256=OW2bn3wD5_pXLunDUf35jhG2q_bTKbC_D7Qu-83aOEA,2243
|
|
60
|
+
agents/realtime/openai_realtime.py,sha256=dv1wxxPIfBzAm2ifUSLEdlZYFhEjvH4KQ1OpbpWbSvI,23318
|
|
61
|
+
agents/realtime/runner.py,sha256=PdSQZ-YibJULEtvWVsa8uUzLxHwgFosCbOoRXTLcaB0,4067
|
|
62
|
+
agents/realtime/session.py,sha256=gepnnpdNhbVfFpDsvvGtf0nwqrfWf38GPR1xb5sgewc,19502
|
|
63
|
+
agents/tracing/__init__.py,sha256=5HO_6na5S6EwICgwl50OMtxiIIosUrqalhvldlYvSVc,2991
|
|
50
64
|
agents/tracing/create.py,sha256=Gm9N5O2DeBy6UU86tRN0wnmzWyXb-qAUBbTj9oxIHao,18106
|
|
51
65
|
agents/tracing/logger.py,sha256=J4KUDRSGa7x5UVfUwWe-gbKwoaq8AeETRqkPt3QvtGg,68
|
|
52
|
-
agents/tracing/processor_interface.py,sha256=
|
|
66
|
+
agents/tracing/processor_interface.py,sha256=e1mWcIAoQFHID1BapcrAZ6MxZg98bPVYgbOPclVoCXc,1660
|
|
53
67
|
agents/tracing/processors.py,sha256=lOdZHwo0rQAflVkKWOZinnWyLtS0stALyydiFOC0gss,11389
|
|
54
68
|
agents/tracing/provider.py,sha256=hiMTAiVnmnZ2RW6HYvL1hckXE-GQEqTSRvZCVcBY7pI,9212
|
|
55
69
|
agents/tracing/scope.py,sha256=u17_m8RPpGvbHrTkaO_kDi5ROBWhfOAIgBe7suiaRD4,1445
|
|
@@ -71,16 +85,16 @@ agents/voice/exceptions.py,sha256=QcyfvaUTBe4gxbFP82oDSa_puzZ4Z4O4k01B8pAHnK0,23
|
|
|
71
85
|
agents/voice/imports.py,sha256=VaE5I8aJTP9Zl_0-y9dx1UcAP7KPRDMaikFK2jFnn8s,348
|
|
72
86
|
agents/voice/input.py,sha256=FSbdHMIdLVKX4vYcmf3WBJ5dAlh5zMDjCAuGfXOZTQs,2910
|
|
73
87
|
agents/voice/model.py,sha256=LWnIWEwU0-aFkff3kbTKkxejnYqzS2XHG5Qm2YcrzFI,5956
|
|
74
|
-
agents/voice/pipeline.py,sha256=
|
|
88
|
+
agents/voice/pipeline.py,sha256=F_b9QSPVbIJAlxpDoHqSt3mWqRqLnm8Dbfk4H9sJ-3M,6491
|
|
75
89
|
agents/voice/pipeline_config.py,sha256=_cynbnzxvQijxkGrMYHJzIV54F9bRvDsPV24qexVO8c,1759
|
|
76
90
|
agents/voice/result.py,sha256=Yx9JCMGCE9OfXacaBFfFLQJRwkNo5-h4Nqm9OPnemU4,11107
|
|
77
91
|
agents/voice/utils.py,sha256=MrRomVqBLXeMAOue-Itwh0Fc5HjB0QCMKXclqFPhrbI,1309
|
|
78
|
-
agents/voice/workflow.py,sha256=
|
|
92
|
+
agents/voice/workflow.py,sha256=m_-_4qU1gEE5gcGahiE2IrIimmRW2X1rR20zZEGivSc,3795
|
|
79
93
|
agents/voice/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
94
|
agents/voice/models/openai_model_provider.py,sha256=Khn0uT-VhsEbe7_OhBMGFQzXNwL80gcWZyTHl3CaBII,3587
|
|
81
|
-
agents/voice/models/openai_stt.py,sha256=
|
|
95
|
+
agents/voice/models/openai_stt.py,sha256=LcVDS7f1pmbm--PWX-IaV9uLg9uv5_L3vSCbVnTJeGs,16864
|
|
82
96
|
agents/voice/models/openai_tts.py,sha256=4KoLQuFDHKu5a1VTJlu9Nj3MHwMlrn9wfT_liJDJ2dw,1477
|
|
83
|
-
openai_agents-0.0.
|
|
84
|
-
openai_agents-0.0.
|
|
85
|
-
openai_agents-0.0.
|
|
86
|
-
openai_agents-0.0.
|
|
97
|
+
openai_agents-0.2.0.dist-info/METADATA,sha256=8Xsbn3GfE_1OpvSR3cwdomfbBYDhRk0mHcWSIcyHXYE,11559
|
|
98
|
+
openai_agents-0.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
99
|
+
openai_agents-0.2.0.dist-info/licenses/LICENSE,sha256=E994EspT7Krhy0qGiES7WYNzBHrh1YDk3r--8d1baRU,1063
|
|
100
|
+
openai_agents-0.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|