Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Byte-compiled / optimized / DLL files
__pycache__/
**/__pycache__/
*.py[cod]
*$py.class

Expand Down
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.
2 changes: 1 addition & 1 deletion src/agents/agent_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def _type_to_str(t: type[Any]) -> str:
# It's a simple type like `str`, `int`, etc.
return t.__name__
elif args:
args_str = ', '.join(_type_to_str(arg) for arg in args)
args_str = ", ".join(_type_to_str(arg) for arg in args)
return f"{origin.__name__}[{args_str}]"
else:
return str(t)
1 change: 1 addition & 0 deletions src/agents/model_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class ModelSettings:
This class holds optional model configuration parameters (e.g. temperature,
top_p, penalties, truncation, etc.).
"""

temperature: float | None = None
top_p: float | None = None
frequency_penalty: float | None = None
Expand Down
21 changes: 0 additions & 21 deletions tests/LICENSE

This file was deleted.

37 changes: 0 additions & 37 deletions tests/Makefile

This file was deleted.

174 changes: 0 additions & 174 deletions tests/README.md

This file was deleted.

131 changes: 0 additions & 131 deletions tests/docs/agents.md

This file was deleted.

Loading