OpenAI API
https://platform.openai.com/docs/api-reference/completions/create#completions/create-model

max_tokens
integer
Optional
Defaults to
16The maximum number of tokens to generateinthe completion.

The token count of your prompt plus max_tokens cannot exceed the model
's context length. Most models have a context length of 2048 tokens (except for the newest models, which support 4096). 最大令牌数
整数
选修的
默认为16
完成时生成的最大令牌数。

您的提示加上的令牌计数max_tokens不能超过模型的上下文长度。大多数模型的上下文长度为
2048 个标记(最新模型除外,它支持 4096)。

temperature
number
Optional
Defaults to
1What sampling temperature to use, between0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2will make it more focused and deterministic.

We generally recommend altering
thisor top_p but not both.
温度
数字
选修的
默认为1
使用什么采样温度,介于
02 之间。较高的值(如 0.8)将使输出更加随机,而较低的值(如 0.2)将使输出更加集中和确定。
我们通常建议改变这个或temperature但不是两者。



top_p
number
Optional
Defaults to
1An alternative to sampling with temperature, called nucleus sampling,where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10%probability mass are considered.

We generally recommend altering
thisor temperature but not both.

top_p
数字
选修的
默认为1
一种替代温度采样的方法,称为核采样,其中模型考虑具有 top_p 概率质量的标记的结果。所以
0.1 意味着只考虑构成前 10%概率质量的标记。


我们通常建议改变这个或top_p但不是两者。

presence_penalty
number
Optional
Defaults to
0Number between-2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics. See more information about frequency and presence penalties.
存在_惩罚
数字
选修的
默认为0
-2.02.0之间的数字。正值会根据到目前为止是否出现在文本中来惩罚新标记,从而增加模型谈论新主题的可能性。

查看有关频率和存在惩罚的更多信息。


frequency_penalty
number
Optional
Defaults to
0Number between-2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim. See more information about frequency and presence penalties.
频率惩罚
数字
选修的
默认为0
-2.02.0之间的数字。正值会根据新标记在文本中的现有频率对其进行惩罚,从而降低模型逐字重复同一行的可能性。

查看有关频率和存在惩罚的更多信息。

标签: none

添加新评论