Skip to content

Commit 96dd792

Browse files
authored
Merge pull request #27 from openai/rm/fixes
Cleanup some more excess files update gitignore, pycache run make format
2 parents c808718 + ce66d90 commit 96dd792

File tree

149 files changed

+9
-13308
lines changed

Some content is hidden

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

149 files changed

+9
-13308
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# Byte-compiled / optimized / DLL files
55
__pycache__/
6+
**/__pycache__/
67
*.py[cod]
78
*$py.class
89

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/agents/agent_output.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _type_to_str(t: type[Any]) -> str:
138138
# It's a simple type like `str`, `int`, etc.
139139
return t.__name__
140140
elif args:
141-
args_str = ', '.join(_type_to_str(arg) for arg in args)
141+
args_str = ", ".join(_type_to_str(arg) for arg in args)
142142
return f"{origin.__name__}[{args_str}]"
143143
else:
144144
return str(t)

src/agents/model_settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class ModelSettings:
1111
This class holds optional model configuration parameters (e.g. temperature,
1212
top_p, penalties, truncation, etc.).
1313
"""
14+
1415
temperature: float | None = None
1516
top_p: float | None = None
1617
frequency_penalty: float | None = None

tests/LICENSE

-21
This file was deleted.

tests/Makefile

-37
This file was deleted.

tests/README.md

-174
This file was deleted.

tests/docs/agents.md

-131
This file was deleted.

0 commit comments

Comments
 (0)