|
|
@@ -3,6 +3,12 @@ import { ChatOptions, getHeaders, LLMApi, LLMModel, LLMUsage } from "../api";
|
|
|
import { useAccessStore, useAppConfig, useChatStore } from "@/app/store";
|
|
|
import { getClientConfig } from "@/app/config/client";
|
|
|
import { DEFAULT_API_HOST } from "@/app/constant";
|
|
|
+import Locale from "../../locales";
|
|
|
+import {
|
|
|
+ EventStreamContentType,
|
|
|
+ fetchEventSource,
|
|
|
+} from "@fortaine/fetch-event-source";
|
|
|
+import { prettyObject } from "@/app/utils/format";
|
|
|
import {
|
|
|
getMessageTextContent,
|
|
|
getMessageImages,
|
|
|
@@ -20,7 +26,7 @@ export class GeminiProApi implements LLMApi {
|
|
|
);
|
|
|
}
|
|
|
async chat(options: ChatOptions): Promise<void> {
|
|
|
- // const apiClient = this;
|
|
|
+ const apiClient = this;
|
|
|
let multimodal = false;
|
|
|
const messages = options.messages.map((v) => {
|
|
|
let parts: any[] = [{ text: getMessageTextContent(v) }];
|
|
|
@@ -120,7 +126,9 @@ export class GeminiProApi implements LLMApi {
|
|
|
|
|
|
if (!baseUrl) {
|
|
|
baseUrl = isApp
|
|
|
- ? DEFAULT_API_HOST + "/api/proxy/google/" + Google.ChatPath(modelConfig.model)
|
|
|
+ ? DEFAULT_API_HOST +
|
|
|
+ "/api/proxy/google/" +
|
|
|
+ Google.ChatPath(modelConfig.model)
|
|
|
: this.path(Google.ChatPath(modelConfig.model));
|
|
|
}
|
|
|
|
|
|
@@ -139,16 +147,15 @@ export class GeminiProApi implements LLMApi {
|
|
|
() => controller.abort(),
|
|
|
REQUEST_TIMEOUT_MS,
|
|
|
);
|
|
|
-
|
|
|
+
|
|
|
if (shouldStream) {
|
|
|
let responseText = "";
|
|
|
let remainText = "";
|
|
|
let finished = false;
|
|
|
|
|
|
- let existingTexts: string[] = [];
|
|
|
const finish = () => {
|
|
|
finished = true;
|
|
|
- options.onFinish(existingTexts.join(""));
|
|
|
+ options.onFinish(responseText + remainText);
|
|
|
};
|
|
|
|
|
|
// animate response to make it looks smooth
|
|
|
@@ -173,72 +180,86 @@ export class GeminiProApi implements LLMApi {
|
|
|
// start animaion
|
|
|
animateResponseText();
|
|
|
|
|
|
- fetch(
|
|
|
- baseUrl.replace("generateContent", "streamGenerateContent"),
|
|
|
- chatPayload,
|
|
|
- )
|
|
|
- .then((response) => {
|
|
|
- const reader = response?.body?.getReader();
|
|
|
- const decoder = new TextDecoder();
|
|
|
- let partialData = "";
|
|
|
+ controller.signal.onabort = finish;
|
|
|
+
|
|
|
+ // https://github.com/google-gemini/cookbook/blob/main/quickstarts/rest/Streaming_REST.ipynb
|
|
|
+ const chatPath =
|
|
|
+ baseUrl.replace("generateContent", "streamGenerateContent") +
|
|
|
+ (baseUrl.indexOf("?") > -1 ? "&alt=sse" : "?alt=sse");
|
|
|
+ console.log("chatPath", chatPath);
|
|
|
+ fetchEventSource(chatPath, {
|
|
|
+ ...chatPayload,
|
|
|
+ async onopen(res) {
|
|
|
+ clearTimeout(requestTimeoutId);
|
|
|
+ const contentType = res.headers.get("content-type");
|
|
|
+ console.log(
|
|
|
+ "[Gemini] request response content type: ",
|
|
|
+ contentType,
|
|
|
+ );
|
|
|
|
|
|
- return reader?.read().then(function processText({
|
|
|
- done,
|
|
|
- value,
|
|
|
- }): Promise<any> {
|
|
|
- if (done) {
|
|
|
- if (response.status !== 200) {
|
|
|
- try {
|
|
|
- let data = JSON.parse(ensureProperEnding(partialData));
|
|
|
- if (data && data[0].error) {
|
|
|
- options.onError?.(new Error(data[0].error.message));
|
|
|
- } else {
|
|
|
- options.onError?.(new Error("Request failed"));
|
|
|
- }
|
|
|
- } catch (_) {
|
|
|
- options.onError?.(new Error("Request failed"));
|
|
|
- }
|
|
|
- }
|
|
|
+ if (contentType?.startsWith("text/plain")) {
|
|
|
+ responseText = await res.clone().text();
|
|
|
+ return finish();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (
|
|
|
+ !res.ok ||
|
|
|
+ !res.headers
|
|
|
+ .get("content-type")
|
|
|
+ ?.startsWith(EventStreamContentType) ||
|
|
|
+ res.status !== 200
|
|
|
+ ) {
|
|
|
+ const responseTexts = [responseText];
|
|
|
+ let extraInfo = await res.clone().text();
|
|
|
+ try {
|
|
|
+ const resJson = await res.clone().json();
|
|
|
+ extraInfo = prettyObject(resJson);
|
|
|
+ } catch {}
|
|
|
|
|
|
- console.log("Stream complete");
|
|
|
- // options.onFinish(responseText + remainText);
|
|
|
- finished = true;
|
|
|
- return Promise.resolve();
|
|
|
+ if (res.status === 401) {
|
|
|
+ responseTexts.push(Locale.Error.Unauthorized);
|
|
|
}
|
|
|
|
|
|
- partialData += decoder.decode(value, { stream: true });
|
|
|
+ if (extraInfo) {
|
|
|
+ responseTexts.push(extraInfo);
|
|
|
+ }
|
|
|
|
|
|
- try {
|
|
|
- let data = JSON.parse(ensureProperEnding(partialData));
|
|
|
+ responseText = responseTexts.join("\n\n");
|
|
|
|
|
|
- const textArray = data.reduce(
|
|
|
- (acc: string[], item: { candidates: any[] }) => {
|
|
|
- const texts = item.candidates.map((candidate) =>
|
|
|
- candidate.content.parts
|
|
|
- .map((part: { text: any }) => part.text)
|
|
|
- .join(""),
|
|
|
- );
|
|
|
- return acc.concat(texts);
|
|
|
- },
|
|
|
- [],
|
|
|
- );
|
|
|
+ return finish();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onmessage(msg) {
|
|
|
+ if (msg.data === "[DONE]" || finished) {
|
|
|
+ return finish();
|
|
|
+ }
|
|
|
+ const text = msg.data;
|
|
|
+ try {
|
|
|
+ const json = JSON.parse(text);
|
|
|
+ const delta = apiClient.extractMessage(json);
|
|
|
|
|
|
- if (textArray.length > existingTexts.length) {
|
|
|
- const deltaArray = textArray.slice(existingTexts.length);
|
|
|
- existingTexts = textArray;
|
|
|
- remainText += deltaArray.join("");
|
|
|
- }
|
|
|
- } catch (error) {
|
|
|
- // console.log("[Response Animation] error: ", error,partialData);
|
|
|
- // skip error message when parsing json
|
|
|
+ if (delta) {
|
|
|
+ remainText += delta;
|
|
|
}
|
|
|
|
|
|
- return reader.read().then(processText);
|
|
|
- });
|
|
|
- })
|
|
|
- .catch((error) => {
|
|
|
- console.error("Error:", error);
|
|
|
- });
|
|
|
+ const blockReason = json?.promptFeedback?.blockReason;
|
|
|
+ if (blockReason) {
|
|
|
+ // being blocked
|
|
|
+ console.log(`[Google] [Safety Ratings] result:`, blockReason);
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.error("[Request] parse error", text, msg);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onclose() {
|
|
|
+ finish();
|
|
|
+ },
|
|
|
+ onerror(e) {
|
|
|
+ options.onError?.(e);
|
|
|
+ throw e;
|
|
|
+ },
|
|
|
+ openWhenHidden: true,
|
|
|
+ });
|
|
|
} else {
|
|
|
const res = await fetch(baseUrl, chatPayload);
|
|
|
clearTimeout(requestTimeoutId);
|
|
|
@@ -252,7 +273,7 @@ export class GeminiProApi implements LLMApi {
|
|
|
),
|
|
|
);
|
|
|
}
|
|
|
- const message = this.extractMessage(resJson);
|
|
|
+ const message = apiClient.extractMessage(resJson);
|
|
|
options.onFinish(message);
|
|
|
}
|
|
|
} catch (e) {
|