Path: blob/master/src/packages/frontend/admin/llm/tests.ts
1496 views
import { History } from "@cocalc/util/types/llm";12export const PROMPTS: Readonly<3{4prompt: string;5expected: string;6history?: Readonly<History>;7system?: string;8}[]9> = [10{11// This test checks if history and system prompt work12prompt: "What's my name?",13expected: "STEPHEN",14system: "Reply one word in uppercase letters.",15history: [16{ role: "user", content: "My name is Stephen" },17{ role: "assistant", content: "UNDERSTOOD" },18],19},20{ prompt: "What's 9 + 91? Reply only the number!", expected: "100" },21{22prompt: "Show me the LaTeX Formula for 'a/(b+c). Reply only the formula!",23expected: "frac",24},25] as const;262728