Since yesterday, I get this error when I use gpt-3.5-turbo, and I live in China

If you live in China, the first step is to open a vpn and get your computer connected to the international Internet.
Guys,big news, i solved it.
@axing4735 @a598975767 @ruby_coder @sps
and then :point_down::

const axios = require('axios');

const itRealyFuckedMe= async (input) => {
    try {
        let data = {
            model: "gpt-3.5-turbo",
            messages: [
                { "role": "user", "content": input }
            ]
        };

        let config = {
            method: 'post',
            maxBodyLength: Infinity,
            url: 'https://api.openai.com/v1/chat/completions',
            headers: {
                'Content-Type': 'application/json',
                'Authorization': `Bearer ${openAIKeys}`
            },
            data: data,
            proxy: {
            /*
            It depends on your real proxy configuration,
            Open your proxy client and view the configuration information.
            */
                host: "127.0.0.1",
                port: 7890,
                protocol: "http"
            }
        };
        let completion = await axios(config)
            .then((response) => {
                console.log("response.data:", JSON.stringify(response.data));
                return response.data.choices[0].message
            })
            .catch((error) => {
                console.log(error);
            });
      
        return completion
    } catch (error) {
        console.log(error);
    }
};
2 Likes