| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- "use client";
- import {
- ApiPath,
- Alibaba,
- ALIBABA_BASE_URL,
- REQUEST_TIMEOUT_MS,
- } from "@/app/constant";
- import { useAccessStore, useAppConfig, useChatStore } from "@/app/store";
- import {
- ChatOptions,
- getHeaders,
- LLMApi,
- LLMModel,
- MultimodalContent,
- } from "../api";
- import Locale from "../../locales";
- import {
- EventStreamContentType,
- fetchEventSource,
- } from "@fortaine/fetch-event-source";
- import { prettyObject } from "@/app/utils/format";
- import { getClientConfig } from "@/app/config/client";
- import { getMessageTextContent, isVisionModel } from "@/app/utils";
- // 预处理图片内容,将base64转换为阿里云API格式
- async function preProcessImageContent(content: string | MultimodalContent[]) {
- if (typeof content === "string") {
- return content;
- }
- const processedContent: any[] = [];
-
- for (const item of content) {
- if (item.type === "text") {
- processedContent.push({
- text: item.text
- });
- } else if (item.type === "image_url") {
- // 阿里云API支持URL和base64格式的图片
- let imageData = item.image_url?.url || "";
-
- if (imageData.startsWith("data:image/")) {
- // 提取base64部分
- const base64Match = imageData.match(/data:image\/[^;]+;base64,(.+)/);
- if (base64Match) {
- imageData = base64Match[1];
- }
- processedContent.push({
- image: imageData
- });
- } else if (imageData.startsWith("http")) {
- // 直接使用URL
- processedContent.push({
- image: imageData
- });
- } else {
- // 假设是纯base64
- processedContent.push({
- image: imageData
- });
- }
- }
- }
-
- return processedContent;
- }
- export interface OpenAIListModelResponse {
- object: string;
- data: Array<{
- id: string;
- object: string;
- root: string;
- }>;
- }
- interface RequestInput {
- messages: {
- role: "system" | "user" | "assistant";
- content: string | MultimodalContent[];
- }[];
- }
- interface RequestParam {
- result_format: string;
- incremental_output?: boolean;
- temperature: number;
- repetition_penalty?: number;
- top_p: number;
- max_tokens?: number;
- }
- interface RequestPayload {
- model: string;
- input: RequestInput;
- parameters: RequestParam;
- }
- export class QwenApi implements LLMApi {
- path(path: string): string {
- const accessStore = useAccessStore.getState();
- let baseUrl = "";
- if (accessStore.useCustomConfig) {
- baseUrl = accessStore.alibabaUrl;
- }
- if (baseUrl.length === 0) {
- const isApp = !!getClientConfig()?.isApp;
- baseUrl = isApp ? ALIBABA_BASE_URL : ApiPath.Alibaba;
- }
- if (baseUrl.endsWith("/")) {
- baseUrl = baseUrl.slice(0, baseUrl.length - 1);
- }
- if (!baseUrl.startsWith("http") && !baseUrl.startsWith(ApiPath.Alibaba)) {
- baseUrl = "https://" + baseUrl;
- }
- console.log("[Proxy Endpoint] ", baseUrl, path);
- return [baseUrl, path].join("/");
- }
- extractMessage(res: any) {
- return res?.output?.choices?.at(0)?.message?.content ?? "";
- }
- async chat(options: ChatOptions) {
- const modelConfig = {
- ...useAppConfig.getState().modelConfig,
- ...useChatStore.getState().currentSession().mask.modelConfig,
- ...{
- model: options.config.model,
- },
- };
- const visionModel = isVisionModel(options.config.model);
- const messages: any[] = [];
-
- for (const v of options.messages) {
- const content = visionModel
- ? await preProcessImageContent(v.content)
- : getMessageTextContent(v);
- messages.push({ role: v.role, content });
- }
- const shouldStream = !!options.config.stream;
- const requestPayload: RequestPayload = {
- model: modelConfig.model,
- input: {
- messages,
- },
- parameters: {
- result_format: "message",
- incremental_output: shouldStream,
- temperature: modelConfig.temperature,
- // max_tokens: modelConfig.max_tokens,
- top_p: modelConfig.top_p === 1 ? 0.99 : modelConfig.top_p, // qwen top_p is should be < 1
- },
- };
- const controller = new AbortController();
- options.onController?.(controller);
- try {
- // 根据模型类型选择不同的端点
- let chatPath = this.path(Alibaba.ChatPath);
- if (visionModel) {
- chatPath = this.path('/services/aigc/multimodal-generation/generation');
- }
-
- const chatPayload = {
- method: "POST",
- body: JSON.stringify(requestPayload),
- signal: controller.signal,
- headers: {
- ...getHeaders(),
- "X-DashScope-SSE": shouldStream ? "enable" : "disable",
- },
- };
- // make a fetch request
- const requestTimeoutId = setTimeout(
- () => controller.abort(),
- REQUEST_TIMEOUT_MS,
- );
- if (shouldStream) {
- let responseText = "";
- let remainText = "";
- let finished = false;
- // animate response to make it looks smooth
- function animateResponseText() {
- if (finished || controller.signal.aborted) {
- responseText += remainText;
- console.log("[Response Animation] finished");
- if (responseText?.length === 0) {
- options.onError?.(new Error("empty response from server"));
- }
- return;
- }
- if (remainText.length > 0) {
- const fetchCount = Math.max(1, Math.round(remainText.length / 60));
- const fetchText = remainText.slice(0, fetchCount);
- responseText += fetchText;
- remainText = remainText.slice(fetchCount);
- options.onUpdate?.(responseText, fetchText);
- }
- requestAnimationFrame(animateResponseText);
- }
- // start animaion
- animateResponseText();
- const finish = () => {
- if (!finished) {
- finished = true;
- options.onFinish(responseText + remainText);
- }
- };
- controller.signal.onabort = finish;
- fetchEventSource(chatPath, {
- ...chatPayload,
- async onopen(res) {
- clearTimeout(requestTimeoutId);
- const contentType = res.headers.get("content-type");
- console.log(
- "[Alibaba] request response content type: ",
- contentType,
- );
- 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 {}
- if (res.status === 401) {
- responseTexts.push(Locale.Error.Unauthorized);
- }
- if (extraInfo) {
- responseTexts.push(extraInfo);
- }
- responseText = responseTexts.join("\n\n");
- return finish();
- }
- },
- onmessage(msg) {
- if (msg.data === "[DONE]" || finished) {
- return finish();
- }
- const text = msg.data;
- try {
- const json = JSON.parse(text);
- const choices = json.output.choices as Array<{
- message: { content: string };
- }>;
- const delta = choices[0]?.message?.content;
- if (delta) {
- remainText += delta;
- }
- } 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(chatPath, chatPayload);
- clearTimeout(requestTimeoutId);
- const resJson = await res.json();
- const message = this.extractMessage(resJson);
- options.onFinish(message);
- }
- } catch (e) {
- console.log("[Request] failed to make a chat request", e);
- options.onError?.(e as Error);
- }
- }
- async usage() {
- return {
- used: 0,
- total: 0,
- };
- }
- async models(): Promise<LLMModel[]> {
- return [];
- }
- }
- export { Alibaba };
|