Transcriptions(语音转文字)
POST
/audio/transcriptions请求参数
Header Params
Accept
string
required
Example:
application/json
Authorization
string
optional
Example:
Bearer {{YOUR_API_KEY}}
Body Params multipart/form-data
file
file
required
要转录的音频文件,采用以下格式之一:mp3、mp4、mpeg、mpga、m4a、wav 或 webm。
model
string
required
要使用的模型的 ID。仅whisper-1
当前可用。
Example:
whisper-1
prompt
string
optional
可选文本,用于指导模型的风格或继续之前的音频片段。提示应与音频语言相匹配。
response_format
string
optional
成绩单输出的格式,采用以下选项:json
Example:
json
temperature
number
optional
采样温度,介于 0 和 1 之间。较高的值(如 0.8)将使输出更加随机,而较低的值(如 0.2)将使输出更加集中和确定。如果设置为 0,模型将使用对数概率自动升高温度,直到达到特定阈值。
Example:
0
language
string
optional
输入音频的语言。以ISO-639-1格式提供输入语言将提高准确性和延迟。
示例代码
Responses
OK(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
text
string
required
ExampleOK
{
"text": "Imagine the wildest idea that you've ever had, and you're curious about how it might scale to something that's a 100, a 1,000 times bigger. This is a place where you can get to do that."
}
Last modified: 3 个月前