Skip to content

Commit a6a94e0

Browse files
RobertCraigiestainless-app[bot]
authored andcommitted
fix: add reasoning_effort to all methods
1 parent 5fdba48 commit a6a94e0

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/openai/resources/beta/chat/completions.py

+12-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
from ...._resource import SyncAPIResource, AsyncAPIResource
1616
from ...._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
1717
from ...._streaming import Stream
18-
from ....types.chat import completion_create_params
18+
from ....types.chat import (
19+
ChatCompletionReasoningEffort,
20+
completion_create_params,
21+
)
1922
from ...._base_client import make_request_options
2023
from ....lib._parsing import (
2124
ResponseFormatT,
@@ -79,6 +82,7 @@ def parse(
7982
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
8083
prediction: Optional[ChatCompletionPredictionContentParam] | NotGiven = NOT_GIVEN,
8184
presence_penalty: Optional[float] | NotGiven = NOT_GIVEN,
85+
reasoning_effort: ChatCompletionReasoningEffort | NotGiven = NOT_GIVEN,
8286
seed: Optional[int] | NotGiven = NOT_GIVEN,
8387
service_tier: Optional[Literal["auto", "default"]] | NotGiven = NOT_GIVEN,
8488
stop: Union[Optional[str], List[str]] | NotGiven = NOT_GIVEN,
@@ -173,6 +177,7 @@ def parser(raw_completion: ChatCompletion) -> ParsedChatCompletion[ResponseForma
173177
"parallel_tool_calls": parallel_tool_calls,
174178
"prediction": prediction,
175179
"presence_penalty": presence_penalty,
180+
"reasoning_effort": reasoning_effort,
176181
"response_format": _type_to_response_format(response_format),
177182
"seed": seed,
178183
"service_tier": service_tier,
@@ -222,6 +227,7 @@ def stream(
222227
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
223228
prediction: Optional[ChatCompletionPredictionContentParam] | NotGiven = NOT_GIVEN,
224229
presence_penalty: Optional[float] | NotGiven = NOT_GIVEN,
230+
reasoning_effort: ChatCompletionReasoningEffort | NotGiven = NOT_GIVEN,
225231
seed: Optional[int] | NotGiven = NOT_GIVEN,
226232
service_tier: Optional[Literal["auto", "default"]] | NotGiven = NOT_GIVEN,
227233
stop: Union[Optional[str], List[str]] | NotGiven = NOT_GIVEN,
@@ -287,6 +293,7 @@ def stream(
287293
parallel_tool_calls=parallel_tool_calls,
288294
prediction=prediction,
289295
presence_penalty=presence_penalty,
296+
reasoning_effort=reasoning_effort,
290297
seed=seed,
291298
service_tier=service_tier,
292299
store=store,
@@ -350,6 +357,7 @@ async def parse(
350357
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
351358
prediction: Optional[ChatCompletionPredictionContentParam] | NotGiven = NOT_GIVEN,
352359
presence_penalty: Optional[float] | NotGiven = NOT_GIVEN,
360+
reasoning_effort: ChatCompletionReasoningEffort | NotGiven = NOT_GIVEN,
353361
seed: Optional[int] | NotGiven = NOT_GIVEN,
354362
service_tier: Optional[Literal["auto", "default"]] | NotGiven = NOT_GIVEN,
355363
stop: Union[Optional[str], List[str]] | NotGiven = NOT_GIVEN,
@@ -444,6 +452,7 @@ def parser(raw_completion: ChatCompletion) -> ParsedChatCompletion[ResponseForma
444452
"parallel_tool_calls": parallel_tool_calls,
445453
"prediction": prediction,
446454
"presence_penalty": presence_penalty,
455+
"reasoning_effort": reasoning_effort,
447456
"response_format": _type_to_response_format(response_format),
448457
"seed": seed,
449458
"service_tier": service_tier,
@@ -493,6 +502,7 @@ def stream(
493502
parallel_tool_calls: bool | NotGiven = NOT_GIVEN,
494503
prediction: Optional[ChatCompletionPredictionContentParam] | NotGiven = NOT_GIVEN,
495504
presence_penalty: Optional[float] | NotGiven = NOT_GIVEN,
505+
reasoning_effort: ChatCompletionReasoningEffort | NotGiven = NOT_GIVEN,
496506
seed: Optional[int] | NotGiven = NOT_GIVEN,
497507
service_tier: Optional[Literal["auto", "default"]] | NotGiven = NOT_GIVEN,
498508
stop: Union[Optional[str], List[str]] | NotGiven = NOT_GIVEN,
@@ -559,6 +569,7 @@ def stream(
559569
parallel_tool_calls=parallel_tool_calls,
560570
prediction=prediction,
561571
presence_penalty=presence_penalty,
572+
reasoning_effort=reasoning_effort,
562573
seed=seed,
563574
service_tier=service_tier,
564575
stop=stop,

0 commit comments

Comments
 (0)