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( func = partial(
responses, responses,
input, input=input,
model, model=model,
include, include=include,
instructions, instructions=instructions,
max_output_tokens, max_output_tokens=max_output_tokens,
metadata, metadata=metadata,
parallel_tool_calls, parallel_tool_calls=parallel_tool_calls,
previous_response_id, previous_response_id=previous_response_id,
reasoning, reasoning=reasoning,
store, store=store,
stream, stream=stream,
temperature, temperature=temperature,
text, text=text,
tool_choice, tool_choice=tool_choice,
tools, tools=tools,
top_p, top_p=top_p,
truncation, truncation=truncation,
user, user=user,
extra_headers, extra_headers=extra_headers,
extra_query, extra_query=extra_query,
extra_body, extra_body=extra_body,
timeout, timeout=timeout,
**kwargs, **kwargs,
) )