文档提示:本目录为静态文档,接口示例与 OpenAPI 地址已固定为 https://api.xiexus.cn
AI 模型接口 音频(Audio) 音频翻译

音频翻译

将音频翻译为英文文本

POST
https://api.xiexus.cn/v1/audio/translations
请求体:必填
接口信息
方法
POST
路径
/v1/audio/translations
完整地址
https://api.xiexus.cn/v1/audio/translations
请求体
必填
标签
音频(Audio)/原生OpenAI格式
响应码
200
当前接口页内已嵌入 OpenAPI JSON;如果需要查看总文件,可直接打开固定静态文件 relay.json
当前 JSON
../../../openapi/generated/ai-model/音频(Audio)/原生OpenAI格式/post-v1-audio-translations-createtranslation-383826484.json
总文件
../../../openapi/relay.json

OpenAPI JSON

已将服务地址固定为 https://api.xiexus.cn,其余结构保持和源文档一致。
{
  "openapi": "3.1.0",
  "info": {
    "title": "音频翻译",
    "version": "1.0.0",
    "description": "将音频翻译为英文文本"
  },
  "tags": [
    {
      "name": "音频(Audio)/原生OpenAI格式"
    }
  ],
  "components": {
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "使用 Bearer Token 认证。\n格式: `Authorization: Bearer sk-xxxxxx`\n"
      }
    }
  },
  "paths": {
    "/v1/audio/translations": {
      "post": {
        "tags": [
          "音频(Audio)/原生OpenAI格式"
        ],
        "summary": "音频翻译",
        "description": "将音频翻译为英文文本",
        "operationId": "createtranslation",
        "parameters": [],
        "requestBody": {
          "required": true,
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  },
                  "model": {
                    "type": "string"
                  },
                  "prompt": {
                    "type": "string"
                  },
                  "response_format": {
                    "type": "string"
                  },
                  "temperature": {
                    "type": "number"
                  }
                },
                "required": [
                  "file",
                  "model"
                ]
              }
            }
          }
        },
        "security": [
          {
            "BearerAuth": []
          }
        ],
        "responses": {
          "200": {
            "description": "成功翻译",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "text": {
                      "type": "string"
                    }
                  },
                  "x-apifox-orders": [
                    "text"
                  ]
                }
              }
            }
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api.xiexus.cn",
      "description": "固定生产地址"
    }
  ]
}