chatGPT 4

 chatGPT 4




// Импорт axios import axios from 'axios'; // Отправляем запрос на API OpenAI axios.post('https://api.openai.com/v1/engines/text-davinci/completions', { prompt: "What is the meaning of life?", max_tokens: 100, n: 1, stop: '', temperature: 0.5, }, { headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ` } }) .then(response => { console.log(response.data.choices[0].text); }) .catch(error => { console.error(error); });

Post a Comment

Previous Post Next Post