Spaces:
Running
Running
File size: 8,587 Bytes
4723216 6f06af9 4723216 6f06af9 4723216 |
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
import {
ChatInterface,
ChatModule,
ChatRestModule,
ChatWorkerClient,
} from "@mlc-ai/web-llm";
function getElementAndCheck(id: string): HTMLElement {
const element = document.getElementById(id);
if (element == null) {
throw Error("Cannot find element " + id);
}
return element;
}
const appConfig = {
model_list: [
{
model_url:
"https://huggingface.co/hrishioa/wasm-ANIMA-Phi-Neptune-Mistral-7B-q4f32_1/resolve/main/params/",
local_id: "ANIMA-Phi-Neptune-Mistral-7B-q4f32_1",
},
],
model_lib_map: {
"ANIMA-Phi-Neptune-Mistral-7B-q4f32_1":
"https://huggingface.co/hrishioa/wasm-ANIMA-Phi-Neptune-Mistral-7B-q4f32_1/resolve/main/ANIMA-Phi-Neptune-Mistral-7B-q4f32_1-webgpu.wasm",
},
use_web_worker: true,
};
class ChatUI {
private uiChat: HTMLElement;
private uiChatInput: HTMLInputElement;
private uiChatInfoLabel: HTMLLabelElement;
private chat: ChatInterface;
private localChat: ChatInterface;
private config = appConfig;
private selectedModel: string;
private chatLoaded = false;
private requestInProgress = false;
// We use a request chain to ensure that
// all requests send to chat are sequentialized
private chatRequestChain: Promise<void> = Promise.resolve();
constructor(chat: ChatInterface, localChat: ChatInterface) {
// use web worker to run chat generation in background
this.chat = chat;
this.localChat = localChat;
// get the elements
this.uiChat = getElementAndCheck("chatui-chat");
this.uiChatInput = getElementAndCheck("chatui-input") as HTMLInputElement;
this.uiChatInfoLabel = getElementAndCheck(
"chatui-info-label"
) as HTMLLabelElement;
// register event handlers
getElementAndCheck("chatui-reset-btn").onclick = () => {
this.onReset();
};
getElementAndCheck("chatui-send-btn").onclick = () => {
this.onGenerate();
};
// TODO: find other alternative triggers
getElementAndCheck("chatui-input").onkeypress = (event) => {
if (event.keyCode === 13) {
this.onGenerate();
}
};
const modelSelector = getElementAndCheck(
"chatui-select"
) as HTMLSelectElement;
for (let i = 0; i < this.config.model_list.length; ++i) {
const item = this.config.model_list[i];
const opt = document.createElement("option");
opt.value = item.local_id;
opt.innerHTML = item.local_id;
opt.selected = i == 0;
modelSelector.appendChild(opt);
}
// Append local server option to the model selector
const localServerOpt = document.createElement("option");
localServerOpt.value = "Local Server";
localServerOpt.innerHTML = "Local Server";
modelSelector.append(localServerOpt);
this.selectedModel = modelSelector.value;
modelSelector.onchange = () => {
this.onSelectChange(modelSelector);
};
}
/**
* Push a task to the execution queue.
*
* @param task The task to be executed;
*/
private pushTask(task: () => Promise<void>) {
const lastEvent = this.chatRequestChain;
this.chatRequestChain = lastEvent.then(task);
}
// Event handlers
// all event handler pushes the tasks to a queue
// that get executed sequentially
// the tasks previous tasks, which causes them to early stop
// can be interrupted by chat.interruptGenerate
private async onGenerate() {
if (this.requestInProgress) {
return;
}
this.pushTask(async () => {
await this.asyncGenerate();
});
}
private async onSelectChange(modelSelector: HTMLSelectElement) {
if (this.requestInProgress) {
// interrupt previous generation if any
this.chat.interruptGenerate();
}
// try reset after previous requests finishes
this.pushTask(async () => {
await this.chat.resetChat();
this.resetChatHistory();
await this.unloadChat();
this.selectedModel = modelSelector.value;
await this.asyncInitChat();
});
}
private async onReset() {
if (this.requestInProgress) {
// interrupt previous generation if any
this.chat.interruptGenerate();
}
// try reset after previous requests finishes
this.pushTask(async () => {
await this.chat.resetChat();
this.resetChatHistory();
});
}
// Internal helper functions
private appendMessage(kind, text) {
if (kind == "init") {
text = "[System Initalize] " + text;
}
if (this.uiChat === undefined) {
throw Error("cannot find ui chat");
}
const msg = `
<div class="msg ${kind}-msg">
<div class="msg-bubble">
<div class="msg-text">${text}</div>
</div>
</div>
`;
this.uiChat.insertAdjacentHTML("beforeend", msg);
this.uiChat.scrollTo(0, this.uiChat.scrollHeight);
}
private updateLastMessage(kind, text) {
if (kind == "init") {
text = "[System Initalize] " + text;
}
if (this.uiChat === undefined) {
throw Error("cannot find ui chat");
}
const matches = this.uiChat.getElementsByClassName(`msg ${kind}-msg`);
if (matches.length == 0) throw Error(`${kind} message do not exist`);
const msg = matches[matches.length - 1];
const msgText = msg.getElementsByClassName("msg-text");
if (msgText.length != 1) throw Error("Expect msg-text");
if (msgText[0].innerHTML == text) return;
const list = text.split("\n").map((t) => {
const item = document.createElement("div");
item.textContent = t;
return item;
});
msgText[0].innerHTML = "";
list.forEach((item) => msgText[0].append(item));
this.uiChat.scrollTo(0, this.uiChat.scrollHeight);
}
private resetChatHistory() {
const clearTags = ["left", "right", "init", "error"];
for (const tag of clearTags) {
// need to unpack to list so the iterator don't get affected by mutation
const matches = [...this.uiChat.getElementsByClassName(`msg ${tag}-msg`)];
for (const item of matches) {
this.uiChat.removeChild(item);
}
}
if (this.uiChatInfoLabel !== undefined) {
this.uiChatInfoLabel.innerHTML = "";
}
}
private async asyncInitChat() {
if (this.chatLoaded) return;
this.requestInProgress = true;
this.appendMessage("init", "");
const initProgressCallback = (report) => {
this.updateLastMessage("init", report.text);
};
this.chat.setInitProgressCallback(initProgressCallback);
try {
if (this.selectedModel != "Local Server") {
await this.chat.reload(this.selectedModel, undefined, this.config);
}
} catch (err) {
this.appendMessage("error", "Init error, " + err.toString());
console.log(err.stack);
this.unloadChat();
this.requestInProgress = false;
return;
}
this.requestInProgress = false;
this.chatLoaded = true;
}
private async unloadChat() {
await this.chat.unload();
this.chatLoaded = false;
}
/**
* Run generate
*/
private async asyncGenerate() {
await this.asyncInitChat();
this.requestInProgress = true;
const prompt = this.uiChatInput.value;
if (prompt == "") {
this.requestInProgress = false;
return;
}
this.appendMessage("right", prompt);
this.uiChatInput.value = "";
this.uiChatInput.setAttribute("placeholder", "Generating...");
this.appendMessage("left", "");
const callbackUpdateResponse = (step, msg) => {
if (msg.length === 0) return this.chat.interruptGenerate();
this.updateLastMessage("left", msg);
};
try {
if (this.selectedModel == "Local Server") {
await this.localChat.generate(prompt, callbackUpdateResponse);
this.uiChatInfoLabel.innerHTML =
await this.localChat.runtimeStatsText();
} else {
await this.chat.generate(prompt, callbackUpdateResponse);
this.uiChatInfoLabel.innerHTML = await this.chat.runtimeStatsText();
}
} catch (err) {
this.appendMessage("error", "Generate error, " + err.toString());
console.log(err.stack);
await this.unloadChat();
}
this.uiChatInput.setAttribute("placeholder", "Enter your message...");
this.requestInProgress = false;
}
}
const useWebWorker = appConfig.use_web_worker;
let chat: ChatInterface;
let localChat: ChatInterface;
if (useWebWorker) {
chat = new ChatWorkerClient(
new Worker(new URL("./worker.ts", import.meta.url), { type: "module" })
);
localChat = new ChatRestModule();
} else {
chat = new ChatModule();
localChat = new ChatRestModule();
}
new ChatUI(chat, localChat);
|