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

Lines changed: 1 addition & 0 deletions
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

-172 Bytes
Binary file not shown.
-929 Bytes
Binary file not shown.
-1.11 KB
Binary file not shown.
-3.81 KB
Binary file not shown.
-964 Bytes
Binary file not shown.
-625 Bytes
Binary file not shown.
-1.26 KB
Binary file not shown.

src/agents/agent_output.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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

0 commit comments

Comments
 (0)