编辑
给定提示和指令,模型将返回提示的编辑版本。
创建编辑
POST
https://api.openai.com/v1/edits
请求正文
model string
必填
要使用的模型的 ID。您可以将 text-davinci-edit-001
或 code-davinci-edit-001
模型与此端点一起使用。
input string
可选 默认""
用作编辑起点的输入文本。
instruction string
必填
告诉模型如何编辑提示的指令。
n integer
可选
默认 1
为输入和指令生成多少编辑。
temperature number
可选 默认 1
使用什么采样 temperature
,介于 0 和 2 之间。像 0.8 这样的较高值会使输出更随机,而像 0.2 这样的较低值会使它更加集中和确定。 我们通常建议改变这个或 top_p
但不是两者都改变。
top_p number
可选
默认 1
一种替代temperature
采样的方法,称为核采样,其中模型考虑具有 top_p
概率质量的标记的结果。所以 0.1 意味着只考虑构成前 10% 概率质量的标记。
请求示例
curl
curl https://api.openai.com/v1/edits \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-d '{
"model": "text-davinci-edit-001",
"input": "What day of the wek is it?",
"instruction": "Fix the spelling mistakes"
}'
请求参数
{
"model": "text-davinci-edit-001",
"input": "What day of the wek is it?",
"instruction": "Fix the spelling mistakes",
}
响应结果
{
"object": "edit",
"created": 1589478378,
"choices": [
{
"text": "What day of the week is it?",
"index": 0,
}
],
"usage": {
"prompt_tokens": 25,
"completion_tokens": 32,
"total_tokens": 57
}
}