mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 10:44:24 +00:00
(fix) linting
This commit is contained in:
parent
2dc411fdb3
commit
f8af5e0155
1 changed files with 1 additions and 1 deletions
|
@ -1819,7 +1819,7 @@ def embedding(
|
|||
###### Text Completion ################
|
||||
def text_completion(
|
||||
prompt: Union[str, List[Union[str, List[Union[str, List[int]]]]]], # Required: The prompt(s) to generate completions for.
|
||||
model: str, # Required: ID of the model to use.
|
||||
model: Optional[str], # Optional: either `model` or `engine` can be set
|
||||
best_of: Optional[int] = None, # Optional: Generates best_of completions server-side.
|
||||
echo: Optional[bool] = None, # Optional: Echo back the prompt in addition to the completion.
|
||||
frequency_penalty: Optional[float] = None, # Optional: Penalize new tokens based on their existing frequency.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue