Skip to content

Commit eed6c9e

Browse files
authored
Merge pull request openai#11 from openai/rm/ignores
Delete pycache/egg files These slipped in because I forgot to add the gitignore initially. Remove them. Also fixed computer use model
2 parents ac73c48 + 1eb48e3 commit eed6c9e

File tree

131 files changed

+2
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+2
-308
lines changed

Diff for: examples/__pycache__/__init__.cpython-313.pyc

-151 Bytes
Binary file not shown.

Diff for: examples/tools/computer_use.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def main():
2828
instructions="You are a helpful agent.",
2929
tools=[ComputerTool(computer)],
3030
# Use the computer using model, and set truncation to auto because its required
31-
model="computer-use-preview-2025-02-04",
31+
model="computer-use-preview",
3232
model_settings=ModelSettings(truncation="auto"),
3333
)
3434
result = await Runner.run(agent, "Search for SF sports news and summarize.")

Diff for: src/agents/__pycache__/__init__.cpython-311.pyc

-6.13 KB
Binary file not shown.

Diff for: src/agents/__pycache__/__init__.cpython-313.pyc

-5.63 KB
Binary file not shown.

Diff for: src/agents/__pycache__/__init__.cpython-39.pyc

-5.11 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_config.cpython-311.pyc

-1.47 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_config.cpython-313.pyc

-1.3 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_config.cpython-39.pyc

-999 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/_debug.cpython-313.pyc

-739 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/_debug.cpython-39.pyc

-518 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/_run_impl.cpython-313.pyc

-31.8 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_run_impl.cpython-39.pyc

-17.5 KB
Binary file not shown.
-5.43 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_utils.cpython-313.pyc

-2.44 KB
Binary file not shown.

Diff for: src/agents/__pycache__/_utils.cpython-39.pyc

-1.93 KB
Binary file not shown.

Diff for: src/agents/__pycache__/agent.cpython-311.pyc

-4.58 KB
Binary file not shown.

Diff for: src/agents/__pycache__/agent.cpython-313.pyc

-6.05 KB
Binary file not shown.

Diff for: src/agents/__pycache__/agent.cpython-39.pyc

-4.76 KB
Binary file not shown.

Diff for: src/agents/__pycache__/agent_output.cpython-313.pyc

-5.86 KB
Binary file not shown.

Diff for: src/agents/__pycache__/agent_output.cpython-39.pyc

-3.92 KB
Binary file not shown.
-3 KB
Binary file not shown.
-2.49 KB
Binary file not shown.

Diff for: src/agents/__pycache__/computer.cpython-313.pyc

-5.7 KB
Binary file not shown.

Diff for: src/agents/__pycache__/computer.cpython-39.pyc

-4.07 KB
Binary file not shown.

Diff for: src/agents/__pycache__/exceptions.cpython-311.pyc

-3.57 KB
Binary file not shown.

Diff for: src/agents/__pycache__/exceptions.cpython-313.pyc

-3.16 KB
Binary file not shown.

Diff for: src/agents/__pycache__/exceptions.cpython-39.pyc

-2.56 KB
Binary file not shown.
-11.9 KB
Binary file not shown.
-7.64 KB
Binary file not shown.

Diff for: src/agents/__pycache__/guardrail.cpython-311.pyc

-10.6 KB
Binary file not shown.

Diff for: src/agents/__pycache__/guardrail.cpython-313.pyc

-9.75 KB
Binary file not shown.

Diff for: src/agents/__pycache__/guardrail.cpython-39.pyc

-7.64 KB
Binary file not shown.
-3.32 KB
Binary file not shown.

Diff for: src/agents/__pycache__/guardrail_base.cpython-39.pyc

-3.38 KB
Binary file not shown.

Diff for: src/agents/__pycache__/guardrails.cpython-313.pyc

-4.04 KB
Binary file not shown.

Diff for: src/agents/__pycache__/handoff.cpython-313.pyc

-8.34 KB
Binary file not shown.

Diff for: src/agents/__pycache__/handoff.cpython-39.pyc

-5.93 KB
Binary file not shown.

Diff for: src/agents/__pycache__/handoffs.cpython-313.pyc

-8.37 KB
Binary file not shown.

Diff for: src/agents/__pycache__/handoffs.cpython-39.pyc

-6.01 KB
Binary file not shown.

Diff for: src/agents/__pycache__/items.cpython-311.pyc

-8.98 KB
Binary file not shown.

Diff for: src/agents/__pycache__/items.cpython-313.pyc

-9.05 KB
Binary file not shown.

Diff for: src/agents/__pycache__/items.cpython-39.pyc

-6.73 KB
Binary file not shown.

Diff for: src/agents/__pycache__/lifecycle.cpython-313.pyc

-3.9 KB
Binary file not shown.

Diff for: src/agents/__pycache__/lifecycle.cpython-39.pyc

-3.23 KB
Binary file not shown.

Diff for: src/agents/__pycache__/logger.cpython-313.pyc

-261 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/logger.cpython-39.pyc

-212 Bytes
Binary file not shown.
-2.08 KB
Binary file not shown.

Diff for: src/agents/__pycache__/model_settings.cpython-39.pyc

-1.43 KB
Binary file not shown.

Diff for: src/agents/__pycache__/output_tool.cpython-313.pyc

-933 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/output_tool.cpython-39.pyc

-790 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/result.cpython-313.pyc

-10.2 KB
Binary file not shown.

Diff for: src/agents/__pycache__/result.cpython-39.pyc

-6.73 KB
Binary file not shown.

Diff for: src/agents/__pycache__/run.cpython-313.pyc

-31.1 KB
Binary file not shown.

Diff for: src/agents/__pycache__/run.cpython-39.pyc

-19.7 KB
Binary file not shown.

Diff for: src/agents/__pycache__/run_context.cpython-313.pyc

-1.12 KB
Binary file not shown.

Diff for: src/agents/__pycache__/run_context.cpython-39.pyc

-997 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/stream_events.cpython-313.pyc

-2.12 KB
Binary file not shown.

Diff for: src/agents/__pycache__/stream_events.cpython-39.pyc

-1.8 KB
Binary file not shown.

Diff for: src/agents/__pycache__/strict_schema.cpython-313.pyc

-5.97 KB
Binary file not shown.

Diff for: src/agents/__pycache__/strict_schema.cpython-39.pyc

-4 KB
Binary file not shown.

Diff for: src/agents/__pycache__/tool.cpython-313.pyc

-11.5 KB
Binary file not shown.

Diff for: src/agents/__pycache__/tool.cpython-39.pyc

-8.37 KB
Binary file not shown.
-2.09 KB
Binary file not shown.

Diff for: src/agents/__pycache__/tool_converter.cpython-39.pyc

-1.5 KB
Binary file not shown.

Diff for: src/agents/__pycache__/usage.cpython-313.pyc

-1.33 KB
Binary file not shown.

Diff for: src/agents/__pycache__/usage.cpython-39.pyc

-774 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/version.cpython-313.pyc

-465 Bytes
Binary file not shown.

Diff for: src/agents/__pycache__/version.cpython-39.pyc

-310 Bytes
Binary file not shown.
-166 Bytes
Binary file not shown.
-160 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-1.05 KB
Binary file not shown.
-1.07 KB
Binary file not shown.
-162 Bytes
Binary file not shown.
-156 Bytes
Binary file not shown.
-1.61 KB
Binary file not shown.
-1.4 KB
Binary file not shown.
-1.28 KB
Binary file not shown.
-205 Bytes
Binary file not shown.

Diff for: src/agents/models/__pycache__/fake_id.cpython-39.pyc

-190 Bytes
Binary file not shown.
-4.12 KB
Binary file not shown.
-3.55 KB
Binary file not shown.

Diff for: src/agents/models/__pycache__/map.cpython-313.pyc

-760 Bytes
Binary file not shown.

Diff for: src/agents/models/__pycache__/map.cpython-39.pyc

-630 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
-2.8 KB
Binary file not shown.
-2 KB
Binary file not shown.
-15.1 KB
Binary file not shown.
-9.3 KB
Binary file not shown.
-2.83 KB
Binary file not shown.
-2.52 KB
Binary file not shown.
-2.16 KB
Binary file not shown.
-5.44 KB
Binary file not shown.
-10.1 KB
Binary file not shown.
-12.3 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/create.cpython-39.pyc

-11.1 KB
Binary file not shown.
-302 Bytes
Binary file not shown.
-278 Bytes
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/logger.cpython-39.pyc

-228 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-13.2 KB
Binary file not shown.
-12.5 KB
Binary file not shown.
-8.59 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/scope.cpython-311.pyc

-3.04 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/scope.cpython-313.pyc

-2.7 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/scope.cpython-39.pyc

-1.91 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/setup.cpython-311.pyc

-9.81 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/setup.cpython-313.pyc

-9.44 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/setup.cpython-39.pyc

-6.64 KB
Binary file not shown.
-6.47 KB
Binary file not shown.
-7.43 KB
Binary file not shown.
-5.57 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/spans.cpython-311.pyc

-11.6 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/spans.cpython-313.pyc

-10.8 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/spans.cpython-39.pyc

-8.09 KB
Binary file not shown.
-7.88 KB
Binary file not shown.
-7.32 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/traces.cpython-39.pyc

-5.45 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/util.cpython-311.pyc

-1.02 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/util.cpython-313.pyc

-1.05 KB
Binary file not shown.

Diff for: src/agents/tracing/__pycache__/util.cpython-39.pyc

-771 Bytes
Binary file not shown.

Diff for: src/openai_agents.egg-info/PKG-INFO

-217
This file was deleted.

Diff for: src/openai_agents.egg-info/SOURCES.txt

-81
This file was deleted.

Diff for: src/openai_agents.egg-info/dependency_links.txt

-1
This file was deleted.

Diff for: src/openai_agents.egg-info/requires.txt

-6
This file was deleted.

Diff for: src/openai_agents.egg-info/top_level.txt

-1
This file was deleted.

Diff for: tests/examples/tools/computer_use.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def main():
2828
instructions="You are a helpful agent.",
2929
tools=[ComputerTool(computer)],
3030
# Use the computer using model, and set truncation to auto because its required
31-
model="computer-use-preview-2025-02-04",
31+
model="computer-use-preview",
3232
model_settings=ModelSettings(truncation="auto"),
3333
)
3434
result = await Runner.run(agent, "Search for SF sports news and summarize.")

0 commit comments

Comments
 (0)