chatbot-template/lib/ai/models.test.ts

85 lines
2.6 KiB
TypeScript
Raw Normal View History

import { simulateReadableStream } from "ai";
import { MockLanguageModelV2 } from "ai/test";
import { getResponseChunksByPrompt } from "@/tests/prompts/utils";
2025-03-04 17:25:46 -08:00
export const chatModel = new MockLanguageModelV2({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
rawCall: { rawPrompt: null, rawSettings: {} },
finishReason: "stop",
usage: { inputTokens: 10, outputTokens: 20, totalTokens: 30 },
content: [{ type: "text", text: "Hello, world!" }],
warnings: [],
2025-03-04 17:25:46 -08:00
}),
doStream: async ({ prompt }) => ({
stream: simulateReadableStream({
chunkDelayInMs: 500,
initialDelayInMs: 1000,
2025-03-04 17:25:46 -08:00
chunks: getResponseChunksByPrompt(prompt),
}),
rawCall: { rawPrompt: null, rawSettings: {} },
}),
});
export const reasoningModel = new MockLanguageModelV2({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
rawCall: { rawPrompt: null, rawSettings: {} },
finishReason: "stop",
usage: { inputTokens: 10, outputTokens: 20, totalTokens: 30 },
content: [{ type: "text", text: "Hello, world!" }],
warnings: [],
2025-03-04 17:25:46 -08:00
}),
2025-03-09 21:02:19 -07:00
doStream: async ({ prompt }) => ({
2025-03-04 17:25:46 -08:00
stream: simulateReadableStream({
chunkDelayInMs: 500,
initialDelayInMs: 1000,
2025-03-09 21:02:19 -07:00
chunks: getResponseChunksByPrompt(prompt, true),
2025-03-04 17:25:46 -08:00
}),
rawCall: { rawPrompt: null, rawSettings: {} },
}),
});
export const titleModel = new MockLanguageModelV2({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
rawCall: { rawPrompt: null, rawSettings: {} },
finishReason: "stop",
usage: { inputTokens: 10, outputTokens: 20, totalTokens: 30 },
content: [{ type: "text", text: "This is a test title" }],
warnings: [],
2025-03-04 17:25:46 -08:00
}),
doStream: async () => ({
stream: simulateReadableStream({
chunkDelayInMs: 500,
initialDelayInMs: 1000,
2025-03-04 17:25:46 -08:00
chunks: [
{ id: "1", type: "text-start" },
{ id: "1", type: "text-delta", delta: "This is a test title" },
{ id: "1", type: "text-end" },
2025-03-04 17:25:46 -08:00
{
type: "finish",
finishReason: "stop",
usage: { inputTokens: 3, outputTokens: 10, totalTokens: 13 },
2025-03-04 17:25:46 -08:00
},
],
}),
rawCall: { rawPrompt: null, rawSettings: {} },
}),
});
export const artifactModel = new MockLanguageModelV2({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
rawCall: { rawPrompt: null, rawSettings: {} },
finishReason: "stop",
usage: { inputTokens: 10, outputTokens: 20, totalTokens: 30 },
content: [{ type: "text", text: "Hello, world!" }],
warnings: [],
2025-03-04 17:25:46 -08:00
}),
2025-03-11 14:39:36 -07:00
doStream: async ({ prompt }) => ({
2025-03-04 17:25:46 -08:00
stream: simulateReadableStream({
chunkDelayInMs: 50,
initialDelayInMs: 100,
2025-03-11 14:39:36 -07:00
chunks: getResponseChunksByPrompt(prompt),
2025-03-04 17:25:46 -08:00
}),
rawCall: { rawPrompt: null, rawSettings: {} },
}),
});