mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +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(
|
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,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue