-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathchat.ts
More file actions
76 lines (65 loc) · 2.04 KB
/
chat.ts
File metadata and controls
76 lines (65 loc) · 2.04 KB
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
import axios, { isAxiosError } from "axios";
import axiosRetry from "axios-retry";
import { logger } from "../utils/logger.js";
export const openai = axios.create({
baseURL: "https://api.openai.com/v1",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.OPENAI_API_KEY}`,
},
});
axiosRetry(openai, {
retries: 3,
retryCondition: (error) => {
logger(`네트워크 요청 불량으로 재시도 중입니다. (에러코드 ${error.code}}`);
return true;
},
});
export interface ChatMessage {
role: "user" | "assistant" | "system";
content: string;
}
export const chat = async (option: {
messages: ChatMessage[];
nested?: number;
}) => {
const { messages, nested } = option;
if (nested !== undefined) {
logger(
`현재 Open A.I 의 메세지가 길어서 ${nested}번째 추가 호출 중 입니다.`
);
if (nested > 10) {
logger("debug", { messages });
throw new Error("ChatGPT 호출이 너무 많습니다.");
}
}
try {
const { data } = await openai.post("/chat/completions", {
model: process.env.OPENAI_CHAT_MODEL ?? "gpt-3.5-turbo",
messages,
});
const answer = `${data.choices?.[0].message?.content ?? ""}`;
const finishReason = data.choices?.[0].finish_reason as string;
if (finishReason === "length") {
const addedChat = await chat({
messages: [...messages, { role: "assistant", content: answer }],
nested: nested ? nested + 1 : 1,
});
return answer + addedChat;
}
return answer;
} catch (error) {
if (isAxiosError(error)) {
logger(
`\nOpen A.I 서버와 3회 연속 요청에 실패하였습니다. 프로그램을 종료합니다.
다음과 같은 원인이 있을 수 있으니 확인을 부탁드립니다.
1. Open A.I 인증키 유효성 문제 ( .env 파일 설정 확인 )
2. Open A.I 서버 접속 문제 ( 인터넷 연결 확인 )
3. Open A.I 서버 과부하 문제 ( ai.com 확인 )
`,
error.response.data
);
process.exit(1);
}
}
};