openai.ts 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. import {
  2. ApiPath,
  3. DEFAULT_API_HOST,
  4. DEFAULT_MODELS,
  5. OpenaiPath,
  6. REQUEST_TIMEOUT_MS,
  7. ServiceProvider,
  8. } from "@/app/constant";
  9. import { useAccessStore, useAppConfig, useChatStore } from "@/app/store";
  10. import { ChatOptions, getHeaders, LLMApi, LLMModel, LLMUsage } from "../api";
  11. import Locale from "../../locales";
  12. import {
  13. EventStreamContentType,
  14. fetchEventSource,
  15. } from "@fortaine/fetch-event-source";
  16. import { prettyObject } from "@/app/utils/format";
  17. import { getClientConfig } from "@/app/config/client";
  18. import { makeAzurePath } from "@/app/azure";
  19. export interface OpenAIListModelResponse {
  20. object: string;
  21. data: Array<{
  22. id: string;
  23. object: string;
  24. root: string;
  25. }>;
  26. }
  27. export class ChatGPTApi implements LLMApi {
  28. private disableListModels = true;
  29. path(path: string): string {
  30. const accessStore = useAccessStore.getState();
  31. const isAzure = accessStore.provider === ServiceProvider.Azure;
  32. if (isAzure && !accessStore.isValidAzure()) {
  33. throw Error(
  34. "incomplete azure config, please check it in your settings page",
  35. );
  36. }
  37. let baseUrl = isAzure ? accessStore.azureUrl : accessStore.openaiUrl;
  38. if (baseUrl.length === 0) {
  39. const isApp = !!getClientConfig()?.isApp;
  40. baseUrl = isApp ? DEFAULT_API_HOST : ApiPath.OpenAI;
  41. }
  42. if (baseUrl.endsWith("/")) {
  43. baseUrl = baseUrl.slice(0, baseUrl.length - 1);
  44. }
  45. if (!baseUrl.startsWith("http") && !baseUrl.startsWith(ApiPath.OpenAI)) {
  46. baseUrl = "https://" + baseUrl;
  47. }
  48. if (isAzure) {
  49. path = makeAzurePath(path, accessStore.azureApiVersion);
  50. }
  51. return [baseUrl, path].join("/");
  52. }
  53. extractMessage(res: any) {
  54. return res.choices?.at(0)?.message?.content ?? "";
  55. }
  56. async chat(options: ChatOptions) {
  57. const messages = options.messages.map((v) => ({
  58. role: v.role,
  59. content: v.content,
  60. }));
  61. const modelConfig = {
  62. ...useAppConfig.getState().modelConfig,
  63. ...useChatStore.getState().currentSession().mask.modelConfig,
  64. ...{
  65. model: options.config.model,
  66. },
  67. };
  68. const requestPayload = {
  69. messages,
  70. stream: options.config.stream,
  71. model: modelConfig.model,
  72. temperature: modelConfig.temperature,
  73. presence_penalty: modelConfig.presence_penalty,
  74. frequency_penalty: modelConfig.frequency_penalty,
  75. top_p: modelConfig.top_p,
  76. // max_tokens: Math.max(modelConfig.max_tokens, 1024),
  77. // Please do not ask me why not send max_tokens, no reason, this param is just shit, I dont want to explain anymore.
  78. };
  79. console.log("[Request] openai payload: ", requestPayload);
  80. const shouldStream = !!options.config.stream;
  81. const controller = new AbortController();
  82. options.onController?.(controller);
  83. try {
  84. const chatPath = this.path(OpenaiPath.ChatPath);
  85. const chatPayload = {
  86. method: "POST",
  87. body: JSON.stringify(requestPayload),
  88. signal: controller.signal,
  89. headers: getHeaders(),
  90. };
  91. // make a fetch request
  92. const requestTimeoutId = setTimeout(
  93. () => controller.abort(),
  94. REQUEST_TIMEOUT_MS,
  95. );
  96. if (shouldStream) {
  97. let responseText = "";
  98. let remainText = "";
  99. let finished = false;
  100. // animate response to make it looks smooth
  101. function animateResponseText() {
  102. if (finished || controller.signal.aborted) {
  103. responseText += remainText;
  104. console.log("[Response Animation] finished");
  105. return;
  106. }
  107. if (remainText.length > 0) {
  108. responseText += remainText[0];
  109. remainText = remainText.slice(1);
  110. options.onUpdate?.(responseText, remainText[0]);
  111. }
  112. requestAnimationFrame(animateResponseText);
  113. }
  114. // start animaion
  115. animateResponseText();
  116. const finish = () => {
  117. if (!finished) {
  118. finished = true;
  119. options.onFinish(responseText + remainText);
  120. }
  121. };
  122. controller.signal.onabort = finish;
  123. fetchEventSource(chatPath, {
  124. ...chatPayload,
  125. async onopen(res) {
  126. clearTimeout(requestTimeoutId);
  127. const contentType = res.headers.get("content-type");
  128. console.log(
  129. "[OpenAI] request response content type: ",
  130. contentType,
  131. );
  132. if (contentType?.startsWith("text/plain")) {
  133. responseText = await res.clone().text();
  134. return finish();
  135. }
  136. if (
  137. !res.ok ||
  138. !res.headers
  139. .get("content-type")
  140. ?.startsWith(EventStreamContentType) ||
  141. res.status !== 200
  142. ) {
  143. const responseTexts = [responseText];
  144. let extraInfo = await res.clone().text();
  145. try {
  146. const resJson = await res.clone().json();
  147. extraInfo = prettyObject(resJson);
  148. } catch {}
  149. if (res.status === 401) {
  150. responseTexts.push(Locale.Error.Unauthorized);
  151. }
  152. if (extraInfo) {
  153. responseTexts.push(extraInfo);
  154. }
  155. responseText = responseTexts.join("\n\n");
  156. return finish();
  157. }
  158. },
  159. onmessage(msg) {
  160. if (msg.data === "[DONE]" || finished) {
  161. return finish();
  162. }
  163. const text = msg.data;
  164. try {
  165. const json = JSON.parse(text) as {
  166. choices: Array<{
  167. delta: {
  168. content: string;
  169. };
  170. }>;
  171. };
  172. const delta = json.choices[0]?.delta?.content;
  173. if (delta) {
  174. remainText += delta;
  175. }
  176. } catch (e) {
  177. console.error("[Request] parse error", text);
  178. }
  179. },
  180. onclose() {
  181. finish();
  182. },
  183. onerror(e) {
  184. options.onError?.(e);
  185. throw e;
  186. },
  187. openWhenHidden: true,
  188. });
  189. } else {
  190. const res = await fetch(chatPath, chatPayload);
  191. clearTimeout(requestTimeoutId);
  192. const resJson = await res.json();
  193. const message = this.extractMessage(resJson);
  194. options.onFinish(message);
  195. }
  196. } catch (e) {
  197. console.log("[Request] failed to make a chat request", e);
  198. options.onError?.(e as Error);
  199. }
  200. }
  201. async usage() {
  202. const formatDate = (d: Date) =>
  203. `${d.getFullYear()}-${(d.getMonth() + 1).toString().padStart(2, "0")}-${d
  204. .getDate()
  205. .toString()
  206. .padStart(2, "0")}`;
  207. const ONE_DAY = 1 * 24 * 60 * 60 * 1000;
  208. const now = new Date();
  209. const startOfMonth = new Date(now.getFullYear(), now.getMonth(), 1);
  210. const startDate = formatDate(startOfMonth);
  211. const endDate = formatDate(new Date(Date.now() + ONE_DAY));
  212. const [used, subs] = await Promise.all([
  213. fetch(
  214. this.path(
  215. `${OpenaiPath.UsagePath}?start_date=${startDate}&end_date=${endDate}`,
  216. ),
  217. {
  218. method: "GET",
  219. headers: getHeaders(),
  220. },
  221. ),
  222. fetch(this.path(OpenaiPath.SubsPath), {
  223. method: "GET",
  224. headers: getHeaders(),
  225. }),
  226. ]);
  227. if (used.status === 401) {
  228. throw new Error(Locale.Error.Unauthorized);
  229. }
  230. if (!used.ok || !subs.ok) {
  231. throw new Error("Failed to query usage from openai");
  232. }
  233. const response = (await used.json()) as {
  234. total_usage?: number;
  235. error?: {
  236. type: string;
  237. message: string;
  238. };
  239. };
  240. const total = (await subs.json()) as {
  241. hard_limit_usd?: number;
  242. };
  243. if (response.error && response.error.type) {
  244. throw Error(response.error.message);
  245. }
  246. if (response.total_usage) {
  247. response.total_usage = Math.round(response.total_usage) / 100;
  248. }
  249. if (total.hard_limit_usd) {
  250. total.hard_limit_usd = Math.round(total.hard_limit_usd * 100) / 100;
  251. }
  252. return {
  253. used: response.total_usage,
  254. total: total.hard_limit_usd,
  255. } as LLMUsage;
  256. }
  257. async models(): Promise<LLMModel[]> {
  258. if (this.disableListModels) {
  259. return DEFAULT_MODELS.slice();
  260. }
  261. const res = await fetch(this.path(OpenaiPath.ListModelPath), {
  262. method: "GET",
  263. headers: {
  264. ...getHeaders(),
  265. },
  266. });
  267. const resJson = (await res.json()) as OpenAIListModelResponse;
  268. const chatModels = resJson.data?.filter((m) => m.id.startsWith("gpt-"));
  269. console.log("[Models]", chatModels);
  270. if (!chatModels) {
  271. return [];
  272. }
  273. return chatModels.map((m) => ({
  274. name: m.id,
  275. available: true,
  276. }));
  277. }
  278. }
  279. export { OpenaiPath };