- OpenAI
- Claude
- Midjourney
- 翻译
- 文心一言
- Stable Diffusion
文本编辑 /v1/edits
POST
https://api.aigc2d.com/v1/edits
OpenAI
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
model
enum<string> <string>
模型
枚举值:
text-davinci-edit-001code-davinci-edit-001
input
string <string>
需要修改的文本
instruction
string <string>
必需
n
integer
可选
temperature
number <float32>
可选
top_p
number <float32>
可选
示例
{
"model": "text-davinci-edit-001",
"input": "What day of the wek is it?",
"instruction": "Fix the spelling mistakes"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.aigc2d.com/v1/edits' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "text-davinci-edit-001",
"input": "What day of the wek is it?",
"instruction": "Fix the spelling mistakes"
}'
返回响应
🟢200成功
application/json
Body
object
string
必需
created
integer
必需
choices
array [object {2}]
必需
text
string
修改后的文本
index
integer
数组索引
usage
object
消耗
prompt_tokens
integer
输入 tokens
completion_tokens
integer
响应 tokens
total_tokens
integer
必需
示例
{
"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
}
}
修改于 2023-06-26 10:47:13