import { create } from "zustand"; import { persist } from "zustand/middleware"; import { type ChatCompletionResponseMessage } from "openai"; import { ControllerPool, requestChatStream, requestWithPrompt, } from "../requests"; import { trimTopic } from "../utils"; import Locale from "../locales"; export type Message = ChatCompletionResponseMessage & { date: string; streaming?: boolean; isError?: boolean; }; export enum SubmitKey { Enter = "Enter", CtrlEnter = "Ctrl + Enter", ShiftEnter = "Shift + Enter", AltEnter = "Alt + Enter", MetaEnter = "Meta + Enter", } export enum Theme { Auto = "auto", Dark = "dark", Light = "light", } export interface ChatConfig { historyMessageCount: number; // -1 means all compressMessageLengthThreshold: number; sendBotMessages: boolean; // send bot's message or not submitKey: SubmitKey; avatar: string; fontSize: number; theme: Theme; tightBorder: boolean; sendPreviewBubble: boolean; disablePromptHint: boolean; modelConfig: { model: string; temperature: number; max_tokens: number; presence_penalty: number; }; } export type ModelConfig = ChatConfig["modelConfig"]; export const ROLES: Message["role"][] = ["system", "user", "assistant"]; const ENABLE_GPT4 = true; export const ALL_MODELS = [ { name: "gpt-4", available: ENABLE_GPT4, }, { name: "gpt-4-0314", available: ENABLE_GPT4, }, { name: "gpt-4-32k", available: ENABLE_GPT4, }, { name: "gpt-4-32k-0314", available: ENABLE_GPT4, }, { name: "gpt-3.5-turbo", available: true, }, { name: "gpt-3.5-turbo-0301", available: true, }, ]; export function limitNumber( x: number, min: number, max: number, defaultValue: number, ) { if (typeof x !== "number" || isNaN(x)) { return defaultValue; } return Math.min(max, Math.max(min, x)); } export function limitModel(name: string) { return ALL_MODELS.some((m) => m.name === name && m.available) ? name : ALL_MODELS[4].name; } export const ModalConfigValidator = { model(x: string) { return limitModel(x); }, max_tokens(x: number) { return limitNumber(x, 0, 32000, 2000); }, presence_penalty(x: number) { return limitNumber(x, -2, 2, 0); }, temperature(x: number) { return limitNumber(x, 0, 2, 1); }, }; const DEFAULT_CONFIG: ChatConfig = { historyMessageCount: 4, compressMessageLengthThreshold: 1000, sendBotMessages: true as boolean, submitKey: SubmitKey.CtrlEnter as SubmitKey, avatar: "1f603", fontSize: 14, theme: Theme.Auto as Theme, tightBorder: false, sendPreviewBubble: true, disablePromptHint: false, modelConfig: { model: "gpt-3.5-turbo", temperature: 1, max_tokens: 2000, presence_penalty: 0, }, }; export interface ChatStat { tokenCount: number; wordCount: number; charCount: number; } export interface ChatSession { id: number; topic: string; memoryPrompt: string; context: Message[]; messages: Message[]; stat: ChatStat; lastUpdate: string; lastSummarizeIndex: number; } const DEFAULT_TOPIC = Locale.Store.DefaultTopic; export const BOT_HELLO: Message = { role: "assistant", content: Locale.Store.BotHello, date: "", }; function createEmptySession(): ChatSession { const createDate = new Date().toLocaleString(); return { id: Date.now(), topic: DEFAULT_TOPIC, memoryPrompt: "", context: [], messages: [], stat: { tokenCount: 0, wordCount: 0, charCount: 0, }, lastUpdate: createDate, lastSummarizeIndex: 0, }; } interface ChatStore { config: ChatConfig; sessions: ChatSession[]; currentSessionIndex: number; clearSessions: () => void; removeSession: (index: number) => void; moveSession: (from: number, to: number) => void; selectSession: (index: number) => void; newSession: () => void; currentSession: () => ChatSession; onNewMessage: (message: Message) => void; onUserInput: (content: string) => Promise; summarizeSession: () => void; updateStat: (message: Message) => void; updateCurrentSession: (updater: (session: ChatSession) => void) => void; updateMessage: ( sessionIndex: number, messageIndex: number, updater: (message?: Message) => void, ) => void; getMessagesWithMemory: () => Message[]; getMemoryPrompt: () => Message; getConfig: () => ChatConfig; resetConfig: () => void; updateConfig: (updater: (config: ChatConfig) => void) => void; clearAllData: () => void; } function countMessages(msgs: Message[]) { return msgs.reduce((pre, cur) => pre + cur.content.length, 0); } const LOCAL_KEY = "chat-next-web-store"; export const useChatStore = create()( persist( (set, get) => ({ sessions: [createEmptySession()], currentSessionIndex: 0, config: { ...DEFAULT_CONFIG, }, clearSessions() { set(() => ({ sessions: [createEmptySession()], currentSessionIndex: 0, })); }, resetConfig() { set(() => ({ config: { ...DEFAULT_CONFIG } })); }, getConfig() { return get().config; }, updateConfig(updater) { const config = get().config; updater(config); set(() => ({ config })); }, selectSession(index: number) { set({ currentSessionIndex: index, }); }, removeSession(index: number) { set((state) => { let nextIndex = state.currentSessionIndex; const sessions = state.sessions; if (sessions.length === 1) { return { currentSessionIndex: 0, sessions: [createEmptySession()], }; } sessions.splice(index, 1); if (nextIndex === index) { nextIndex -= 1; } return { currentSessionIndex: nextIndex, sessions, }; }); }, moveSession(from: number, to: number) { set((state) => { const { sessions, currentSessionIndex: oldIndex } = state; // move the session const newSessions = [...sessions]; const session = newSessions[from]; newSessions.splice(from, 1); newSessions.splice(to, 0, session); // modify current session id let newIndex = oldIndex === from ? to : oldIndex; if (oldIndex > from && oldIndex <= to) { newIndex -= 1; } else if (oldIndex < from && oldIndex >= to) { newIndex += 1; } return { currentSessionIndex: newIndex, sessions: newSessions, }; }); }, newSession() { set((state) => ({ currentSessionIndex: 0, sessions: [createEmptySession()].concat(state.sessions), })); }, currentSession() { let index = get().currentSessionIndex; const sessions = get().sessions; if (index < 0 || index >= sessions.length) { index = Math.min(sessions.length - 1, Math.max(0, index)); set(() => ({ currentSessionIndex: index })); } const session = sessions[index]; return session; }, onNewMessage(message) { get().updateCurrentSession((session) => { session.lastUpdate = new Date().toLocaleString(); }); get().updateStat(message); get().summarizeSession(); }, async onUserInput(content) { const userMessage: Message = { role: "user", content, date: new Date().toLocaleString(), }; const botMessage: Message = { content: "", role: "assistant", date: new Date().toLocaleString(), streaming: true, }; // get recent messages const recentMessages = get().getMessagesWithMemory(); const sendMessages = recentMessages.concat(userMessage); const sessionIndex = get().currentSessionIndex; const messageIndex = get().currentSession().messages.length + 1; // save user's and bot's message get().updateCurrentSession((session) => { session.messages.push(userMessage); session.messages.push(botMessage); }); // make request console.log("[User Input] ", sendMessages); requestChatStream(sendMessages, { onMessage(content, done) { // stream response if (done) { botMessage.streaming = false; botMessage.content = content; get().onNewMessage(botMessage); ControllerPool.remove(sessionIndex, messageIndex); } else { botMessage.content = content; set(() => ({})); } }, onError(error, statusCode) { if (statusCode === 401) { botMessage.content = Locale.Error.Unauthorized; } else { botMessage.content += "\n\n" + Locale.Store.Error; } botMessage.streaming = false; userMessage.isError = true; botMessage.isError = true; set(() => ({})); ControllerPool.remove(sessionIndex, messageIndex); }, onController(controller) { // collect controller for stop/retry ControllerPool.addController( sessionIndex, messageIndex, controller, ); }, filterBot: !get().config.sendBotMessages, modelConfig: get().config.modelConfig, }); }, getMemoryPrompt() { const session = get().currentSession(); return { role: "system", content: Locale.Store.Prompt.History(session.memoryPrompt), date: "", } as Message; }, getMessagesWithMemory() { const session = get().currentSession(); const config = get().config; const messages = session.messages.filter((msg) => !msg.isError); const n = messages.length; const context = session.context.slice(); if (session.memoryPrompt && session.memoryPrompt.length > 0) { const memoryPrompt = get().getMemoryPrompt(); context.push(memoryPrompt); } const recentMessages = context.concat( messages.slice(Math.max(0, n - config.historyMessageCount)), ); return recentMessages; }, updateMessage( sessionIndex: number, messageIndex: number, updater: (message?: Message) => void, ) { const sessions = get().sessions; const session = sessions.at(sessionIndex); const messages = session?.messages; updater(messages?.at(messageIndex)); set(() => ({ sessions })); }, summarizeSession() { const session = get().currentSession(); // should summarize topic after chating more than 50 words const SUMMARIZE_MIN_LEN = 50; if ( session.topic === DEFAULT_TOPIC && countMessages(session.messages) >= SUMMARIZE_MIN_LEN ) { requestWithPrompt(session.messages, Locale.Store.Prompt.Topic).then( (res) => { get().updateCurrentSession( (session) => (session.topic = trimTopic(res)), ); }, ); } const config = get().config; let toBeSummarizedMsgs = session.messages.slice( session.lastSummarizeIndex, ); const historyMsgLength = countMessages(toBeSummarizedMsgs); if (historyMsgLength > get().config?.modelConfig?.max_tokens ?? 4000) { const n = toBeSummarizedMsgs.length; toBeSummarizedMsgs = toBeSummarizedMsgs.slice( Math.max(0, n - config.historyMessageCount), ); } // add memory prompt toBeSummarizedMsgs.unshift(get().getMemoryPrompt()); const lastSummarizeIndex = session.messages.length; console.log( "[Chat History] ", toBeSummarizedMsgs, historyMsgLength, config.compressMessageLengthThreshold, ); if (historyMsgLength > config.compressMessageLengthThreshold) { requestChatStream( toBeSummarizedMsgs.concat({ role: "system", content: Locale.Store.Prompt.Summarize, date: "", }), { filterBot: false, onMessage(message, done) { session.memoryPrompt = message; if (done) { console.log("[Memory] ", session.memoryPrompt); session.lastSummarizeIndex = lastSummarizeIndex; } }, onError(error) { console.error("[Summarize] ", error); }, }, ); } }, updateStat(message) { get().updateCurrentSession((session) => { session.stat.charCount += message.content.length; // TODO: should update chat count and word count }); }, updateCurrentSession(updater) { const sessions = get().sessions; const index = get().currentSessionIndex; updater(sessions[index]); set(() => ({ sessions })); }, clearAllData() { if (confirm(Locale.Store.ConfirmClearAll)) { localStorage.clear(); location.reload(); } }, }), { name: LOCAL_KEY, version: 1.1, migrate(persistedState, version) { const state = persistedState as ChatStore; if (version === 1) { state.sessions.forEach((s) => (s.context = [])); } return state; }, }, ), );