mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
explictly pass params to partial func
This commit is contained in:
parent
ffa4978f8a
commit
d6a49f6b66
1 changed files with 22 additions and 22 deletions
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue