Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reasoning_effort parameter to ModelSettings Fixes #189 #235

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions src/agents/model_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class ModelSettings:
max_tokens: int | None = None
"""The maximum number of output tokens to generate."""

reasoning_effort: Literal["low", "medium", "high"] | None = None
"""The level of reasoning effort to use. Applies to OpenAI models."""

def resolve(self, override: ModelSettings | None) -> ModelSettings:
"""Produce a new ModelSettings by overlaying any non-None values from the
override on top of this instance."""
Expand All @@ -53,4 +56,5 @@ def resolve(self, override: ModelSettings | None) -> ModelSettings:
parallel_tool_calls=override.parallel_tool_calls or self.parallel_tool_calls,
truncation=override.truncation or self.truncation,
max_tokens=override.max_tokens or self.max_tokens,
reasoning_effort=override.reasoning_effort or self.reasoning_effort,
)
2 changes: 2 additions & 0 deletions src/agents/models/openai_chatcompletions.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ async def _fetch_response(
tool_choice=tool_choice,
response_format=response_format,
parallel_tool_calls=parallel_tool_calls,
reasoning_effort=self._non_null_or_not_given(model_settings.reasoning_effort),
stream=stream,
stream_options={"include_usage": True} if stream else NOT_GIVEN,
extra_headers=_HEADERS,
Expand All @@ -544,6 +545,7 @@ async def _fetch_response(
else "auto",
top_p=model_settings.top_p,
temperature=model_settings.temperature,
reasoning_effort=model_settings.reasoning_effort,
tools=[],
parallel_tool_calls=parallel_tool_calls or False,
)
Expand Down
1 change: 1 addition & 0 deletions src/agents/models/openai_responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ async def _fetch_response(
top_p=self._non_null_or_not_given(model_settings.top_p),
truncation=self._non_null_or_not_given(model_settings.truncation),
max_output_tokens=self._non_null_or_not_given(model_settings.max_tokens),
reasoning_effort=self._non_null_or_not_given(model_settings.reasoning_effort),
tool_choice=tool_choice,
parallel_tool_calls=parallel_tool_calls,
stream=stream,
Expand Down
Loading