forked from phoenix/litellm-mirror
docs(input.md): update docs with parallel_tool_calls
This commit is contained in:
parent
5ff74f90ad
commit
e96326a211
1 changed files with 3 additions and 0 deletions
|
@ -97,6 +97,7 @@ def completion(
|
|||
seed: Optional[int] = None,
|
||||
tools: Optional[List] = None,
|
||||
tool_choice: Optional[str] = None,
|
||||
parallel_tool_calls: Optional[bool] = None,
|
||||
logprobs: Optional[bool] = None,
|
||||
top_logprobs: Optional[int] = None,
|
||||
deployment_id=None,
|
||||
|
@ -170,6 +171,8 @@ def completion(
|
|||
|
||||
- `none` is the default when no functions are present. `auto` is the default if functions are present.
|
||||
|
||||
- `parallel_tool_calls`: *boolean (optional)* - Whether to enable parallel function calling during tool use.. OpenAI default is true.
|
||||
|
||||
- `frequency_penalty`: *number or null (optional)* - It is used to penalize new tokens based on their frequency in the text so far.
|
||||
|
||||
- `logit_bias`: *map (optional)* - Used to modify the probability of specific tokens appearing in the completion.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue