1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| import 'dotenv/config'; import {Configuration, OpenAIApi} from 'openai';
const configuration = new Configuration({ apiKey: process.env.OPENAI_API_KEY }); const openAiApi = new OpenAIApi(configuration);
function getCurrentWeather(location: string) { return { "location": location, "temperature": "72", "forecast": ["sunny", "windy"], } }
async function main() { const completion = await openAiApi.createChatCompletion({ model: 'gpt-3.5-turbo-0613', messages: [ { role: 'system', content: 'You are a helpful a assistant.', }, { role: 'user', content: 'what is the current weather in Taipei?', } ], function_call: 'auto', functions: [{ name: 'getCurrentWeather', description: 'Get the current weather in a given location', parameters: { type: 'object', properties: { location: { type: 'string', description: 'The location, e.g. "Taipei"' } }, required: ['location'] } }], });
const completionResponse = completion.data.choices[0].message!;
console.log(completionResponse);
let functionCallResult = ''; if (!completionResponse.content && completionResponse.function_call) { if (completionResponse.function_call.name === 'getCurrentWeather') { const args = JSON.parse(completionResponse.function_call.arguments!); functionCallResult = JSON.stringify(getCurrentWeather(args.location)); }
const completionResponse2 = await openAiApi.createChatCompletion({ model: 'gpt-3.5-turbo-0613', messages: [ { role: 'system', content: 'You are a helpful a assistant.', }, { role: 'user', content: 'what is the current weather in Taipei?', }, { role: 'function', name: 'getCurrentWeather', content: functionCallResult } ] });
console.log('completion2'); console.log(completionResponse2.data.choices[0].message); }
}
main();
|