ESC
Tutorials > AI API Calls
Head over to the folder/server/api/ai any file with.ts extension is is your API endpoint! ✨ 🤖 We've included a custom retry logic to help you navigate the unpredictable nature of AI APIs. 🔄 This ensures that your system can handle AI API outages smoothly – all for your convenience. 👊
In your new api-route.ts file, you can set up an example AI API call like this and enjoy the benefits of our retry logic working behind the scenes. ✨
/app/api/ai/gpt.ts
1
2 try {
3 // Custom retry logic considering the outages in AI APIs
4 axiosRetry(axios, {
5 retryDelay: (retryCount) => {
6 return retryCount * 1;
7 },
8 retries: 20,
9 });
10
11 const res = await axios.post(url, body, options);
12
13 const answer = res.data.choices[0].message.content;
14 const usage = res?.data?.usage;
15
16 console.log(">>> " + answer);
17 console.log(
18 "TOKENS USED: " +
19 usage?.total_tokens +
20 " (prompt: " +
21 usage?.prompt_tokens +
22 " / response: " +
23 usage?.completion_tokens +
24 ")"
25 );
26 console.log("
27");
28
29 return answer;
30 } catch (e) {
31 console.error("ChatGPT Error: " + e?.response?.status, e?.response?.data);
32 return null;
33 }
34