Spaces:
Running
Running
File size: 8,135 Bytes
10d1fd4 | 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 | import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { textGenerationFunctions } from "./textGeneration";
import type { ChatMessage } from "./types";
const mockGetSettings = vi.fn();
const mockGetConversationSummary = vi.fn();
vi.mock("./logEntries", () => ({
addLogEntry: vi.fn(),
}));
vi.mock("./pubSub", () => ({
getSettings: (...args: unknown[]) => mockGetSettings(...args),
getConversationSummary: (...args: unknown[]) =>
mockGetConversationSummary(...args),
listenToSettingsChanges: vi.fn(),
updateConversationSummary: vi.fn(),
updateTextGenerationState: vi.fn(),
getTextGenerationState: vi.fn(),
getResponse: vi.fn(),
getQuery: vi.fn(),
updateResponse: vi.fn(),
updateSearchPromise: vi.fn(),
updateTextSearchResults: vi.fn(),
updateTextSearchState: vi.fn(),
updateImageSearchResults: vi.fn(),
updateImageSearchState: vi.fn(),
updateChatMessages: vi.fn(),
updateLlmTextSearchResults: vi.fn(),
}));
vi.mock("./history", () => ({
getCurrentSearchRunId: vi.fn().mockResolvedValue("run-123"),
saveLlmResponseForQuery: vi.fn(),
updateSearchResults: vi.fn(),
}));
vi.mock("./search", () => ({
searchText: vi.fn(),
searchImages: vi.fn(),
}));
vi.mock("./systemPrompt", () => ({
getSystemPrompt: vi.fn().mockReturnValue("You are a helpful assistant."),
}));
vi.mock("gpt-tokenizer", () => ({
default: {
encode: vi.fn().mockReturnValue({ data: [1, 2, 3] }),
decode: vi.fn(),
},
}));
vi.mock("./webGpu", () => ({
isWebGPUAvailable: false,
}));
vi.mock("./textGenerationUtilities", () => ({
ChatGenerationError: class ChatGenerationError extends Error {
constructor(message: string) {
super(message);
this.name = "ChatGenerationError";
}
},
defaultContextSize: 6000,
getFormattedSearchResults: vi
.fn()
.mockReturnValue("Formatted search results"),
}));
describe("textGenerationFunctions", () => {
beforeEach(() => {
vi.clearAllMocks();
mockGetSettings.mockReset();
mockGetConversationSummary.mockReset();
});
afterEach(() => {
vi.restoreAllMocks();
});
describe("getCurrentModelName", () => {
it("should return openai model name when inferenceType is openai", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "openai",
openAiApiModel: "gpt-4",
enableWebGpu: false,
});
const result = getCurrentModelName();
expect(result).toBe("gpt-4");
});
it("should return AI Horde when inferenceType is horde", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "horde",
});
const result = getCurrentModelName();
expect(result).toBe("AI Horde");
});
it("should return Internal API when inferenceType is internal", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "internal",
});
const result = getCurrentModelName();
expect(result).toBe("Internal API");
});
it("should return WebLLM when inferenceType is browser and enableWebGpu is true", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "browser",
enableWebGpu: true,
webLlmModelId: "web-llm-model",
});
const result = getCurrentModelName();
expect(result).toBe("web-llm-model");
});
it("should return Wllama when inferenceType is browser and enableWebGpu is false", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "browser",
enableWebGpu: false,
wllamaModelId: "wllama-model",
});
const result = getCurrentModelName();
expect(result).toBe("wllama-model");
});
it("should return Unknown for unknown inferenceType", () => {
const { getCurrentModelName } = textGenerationFunctions;
mockGetSettings.mockReturnValue({
inferenceType: "unknown" as unknown,
});
const result = getCurrentModelName();
expect(result).toBe("Unknown");
});
});
describe("getConversationId", () => {
it("should return trimmed content of first user message", () => {
const { getConversationId } = textGenerationFunctions;
const messages: ChatMessage[] = [
{ role: "user", content: " Hello world " },
{ role: "assistant", content: "Hi there!" },
];
const result = getConversationId(messages);
expect(result).toBe("Hello world");
});
it("should return empty string when no user message", () => {
const { getConversationId } = textGenerationFunctions;
const messages: ChatMessage[] = [
{ role: "assistant", content: "Hi there!" },
];
const result = getConversationId(messages);
expect(result).toBe("");
});
it("should return empty string for empty messages array", () => {
const { getConversationId } = textGenerationFunctions;
const result = getConversationId([]);
expect(result).toBe("");
});
it("should return first user message when multiple user messages exist", () => {
const { getConversationId } = textGenerationFunctions;
const messages: ChatMessage[] = [
{ role: "user", content: "First question" },
{ role: "assistant", content: "Answer" },
{ role: "user", content: "Second question" },
];
const result = getConversationId(messages);
expect(result).toBe("First question");
});
});
describe("loadConversationSummary", () => {
it("should return summary when conversationId matches", () => {
const { loadConversationSummary } = textGenerationFunctions;
mockGetConversationSummary.mockReturnValue({
conversationId: "test-id",
summary: "Previous summary",
});
const result = loadConversationSummary("test-id");
expect(result).toBe("Previous summary");
});
it("should return empty string when conversationId does not match", () => {
const { loadConversationSummary } = textGenerationFunctions;
mockGetConversationSummary.mockReturnValue({
conversationId: "different-id",
summary: "Previous summary",
});
const result = loadConversationSummary("test-id");
expect(result).toBe("");
});
it("should return empty string when no summary stored", () => {
const { loadConversationSummary } = textGenerationFunctions;
mockGetConversationSummary.mockReturnValue({
conversationId: "",
summary: "",
});
const result = loadConversationSummary("test-id");
expect(result).toBe("");
});
});
describe("summarizeDroppedMessages", () => {
it("should return previous summary when dropped messages are empty", () => {
const { summarizeDroppedMessages } = textGenerationFunctions;
const result = summarizeDroppedMessages([], "previous");
expect(result).toBe("previous");
});
it("should format dropped messages correctly", () => {
const { summarizeDroppedMessages } = textGenerationFunctions;
const messages: ChatMessage[] = [
{ role: "user", content: "What is AI?" },
{
role: "assistant",
content: "AI stands for Artificial Intelligence.",
},
];
const result = summarizeDroppedMessages(messages, "");
expect(result).toContain("What is AI?");
expect(result).toContain("AI stands for Artificial Intelligence.");
});
it("should prepend previous summary when provided", () => {
const { summarizeDroppedMessages } = textGenerationFunctions;
const messages: ChatMessage[] = [
{ role: "user", content: "New question" },
];
const result = summarizeDroppedMessages(messages, "Previous context");
expect(result).toContain("Previous context");
expect(result).toContain("New question");
});
});
});
|