forked from glrodasz/contentr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiCalls.js
31 lines (25 loc) · 831 Bytes
/
apiCalls.js
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
import dotenv from "dotenv";
import { Configuration, OpenAIApi } from "openai";
import { buildMessages } from "./promptBuilder.js";
import { GTP_MODEL } from "./config.js";
dotenv.config();
const { OPENAI_API_KEY } = process.env;
const configuration = new Configuration({ apiKey: OPENAI_API_KEY });
const openai = new OpenAIApi(configuration);
export async function fetchChatCompletion(chunk) {
const messages = buildMessages(chunk).map((message) => ({
...message,
content: message.content.trim(),
}));
try {
const response = await openai.createChatCompletion({
model: GTP_MODEL,
messages,
temperature: 0,
});
return response.data?.choices?.[0]?.message?.content?.trim() ?? "";
} catch (error) {
console.error("Error during API call:", error.message);
throw error;
}
}