explictly pass params to partial func

This commit is contained in:
Ishaan Jaff 2025-03-12 09:37:38 -07:00
parent ffa4978f8a
commit d6a49f6b66

View file

@ -68,28 +68,28 @@ async def aresponses(
func = partial(
responses,
input,
model,
include,
instructions,
max_output_tokens,
metadata,
parallel_tool_calls,
previous_response_id,
reasoning,
store,
stream,
temperature,
text,
tool_choice,
tools,
top_p,
truncation,
user,
extra_headers,
extra_query,
extra_body,
timeout,
input=input,
model=model,
include=include,
instructions=instructions,
max_output_tokens=max_output_tokens,
metadata=metadata,
parallel_tool_calls=parallel_tool_calls,
previous_response_id=previous_response_id,
reasoning=reasoning,
store=store,
stream=stream,
temperature=temperature,
text=text,
tool_choice=tool_choice,
tools=tools,
top_p=top_p,
truncation=truncation,
user=user,
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
**kwargs,
)