OpenAI transcription API bad request

题意:"OpenAI 转录 API 错误请求"

问题背景:

javascript 复制代码
const FormData = require('form-data');

    const data = new FormData();

    console.log('buffer: ', buffer);
    console.log('typeof buffer: ', typeof buffer);

    const filename = new Date().getTime().toString() + '.webm';
    data.append('model', 'whisper-1');
    data.append('file', bufferToStream(buffer));
    
    console.log('data: ', data);

    let config = {
        method: "post",
        maxBodyLength: Infinity,
        url: "https://api.openai.com/v1/audio/transcriptions",
        headers: {
        Authorization:
            `Bearer ${process.env.OPENAI_API_KEY}`,
            "Content-Type": "multipart/form-data",
            ...data.getHeaders(),
        },
        data: data,
    };

    await axios.request(config)

I am trying to post a file to openAI to get transcription. But I constantly get 400 bad request error.

"我正在尝试向 OpenAI 发送一个文件以获取转录。但是我不断收到 400 错误请求。"

I am using JavaScript (not TypeScript) so I can't use the FormData package, at least I have tried it and it didn't help me.

"我正在使用 JavaScript(而不是 TypeScript),所以我不能使用 FormData 包。至少我尝试过了,它没有帮助我。"

Error: Data after transformation must be a string, an Array Buffer, a Buffer, or a Stream

I tried Postman and it works, which provides me with the following code snippet:

"我尝试了 Postman,它有效,这里是它给我的代码片段:"

javascript 复制代码
const axios = require('axios');
const FormData = require('form-data');
const fs = require('fs');
let data = new FormData();
data.append('model', 'whisper-1');
data.append('file', fs.createReadStream('/Users/UserName/Downloads/session-1708252969167.webm'));

let config = {
  method: 'post',
  maxBodyLength: Infinity,
  url: 'https://api.openai.com/v1/audio/transcriptions',
  headers: { 
    'Authorization': {{OPENAI_API_KEY}}, 
    'Cookie': '__cf_bm=5L5OJyh1Yd28yUT9Uv0TT9F5POhL1fzeraSZF1C.9OA-1708337727-1.0-AV+XT0hftIn7mtJxICJduMQBpFcB9UQvbil6GmgI2BX7rw0BZRvuseeN0QgeuIt7KyNTxGJs/xcWIKMpkQdvzC4=; _cfuvid=3uLOzYX3DlLxSjGMLDqD0qcGIj.4zkEXt2czm9OiEfU-1708251423683-0.0-604800000', 
    ...data.getHeaders()
  },
  data : data
};

axios.request(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

I tried this code snippet as well, but it throw me a 400 error.

"我也尝试了这个代码片段,但它仍然返回了 400 错误。"

What did I do wrong?

"我哪里做错了?"

问题解决:

This code will work

"这段代码会有效。"

Save as trans.js

javascript 复制代码
const axios = require('axios');
const fs = require('fs');
const FormData = require('form-data');

// Function to make the API call
async function callOpenAI() {
  try {
    const fileStream = fs.createReadStream('audio.webm');

    const formData = new FormData();
    formData.append('file', fileStream);
    formData.append('model', 'whisper-1');

    const response = await axios.post('https://api.openai.com/v1/audio/transcriptions', formData, {
      headers: {
        'Authorization': `Bearer ${process.env.OPENAI_API_KEY}`,
        ...formData.getHeaders() // Get headers manually
      }
    });

    console.log(response.data);
  } catch (error) {
    console.error('Error:', error.response.data);
  }
}

// Call the function
callOpenAI();

Check API by Postman

Set environment variable for API KEY

On Git Bash

bash 复制代码
OPENAI_API_KEY=[your API KEY]
Install dependencies 安装依赖
bash 复制代码
npm install axios fs form-data
Run it 运行
bash 复制代码
node trans.js
Result 结果
相关推荐
linuxxx11040 分钟前
高考志愿填报辅助系统
redis·后端·python·mysql·ai·django·高考
努力的光头强1 小时前
《智能体设计模式》从零基础入门到精通,看这一篇就够了!
大数据·人工智能·深度学习·microsoft·机器学习·设计模式·ai
mine_mine1 小时前
油猴脚本拦截fetch和xhr请求,实现修改服务端接口功能
javascript
一 乐1 小时前
考公|考务考试|基于SprinBoot+vue的考公在线考试系统(源码+数据库+文档)
前端·javascript·数据库·vue.js·spring boot·课程设计
zhousenshan2 小时前
Node.js事件循环机制
node.js
明金同学2 小时前
Node.js 实现 Stripe 支付的简单示例
node.js
h***04772 小时前
Node.js(v16.13.2版本)安装及环境配置教程
node.js
b***67642 小时前
node.js下载、安装、设置国内镜像源(永久)(Windows11)
node.js
k***92162 小时前
Node.js NativeAddon 构建工具:node-gyp 安装与配置完全指南
node.js
q***31142 小时前
node.js卸载并重新安装(超详细图文步骤)
node.js