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

82 lines
2.1 KiB
TypeScript
Raw Normal View History

import { simulateReadableStream } from "ai";
import { MockLanguageModelV3 } from "ai/test";
import { getResponseChunksByPrompt } from "@/tests/prompts/utils";
2025-03-04 17:25:46 -08:00
const mockUsage = {
inputTokens: { total: 10, noCache: 10, cacheRead: 0, cacheWrite: 0 },
outputTokens: { total: 20, text: 20, reasoning: 0 },
};
export const chatModel = new MockLanguageModelV3({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
finishReason: "stop",
usage: mockUsage,
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),
}),
}),
});
export const reasoningModel = new MockLanguageModelV3({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
finishReason: "stop",
usage: mockUsage,
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
}),
}),
});
export const titleModel = new MockLanguageModelV3({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
finishReason: "stop",
usage: mockUsage,
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: mockUsage,
2025-03-04 17:25:46 -08:00
},
],
}),
}),
});
export const artifactModel = new MockLanguageModelV3({
2025-03-04 17:25:46 -08:00
doGenerate: async () => ({
finishReason: "stop",
usage: mockUsage,
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
}),
}),
});