AI prompt matcher for testing with Vitest and Jest.
Install expect-match-prompt
as a dev dependency.
npm add -D expect-match-prompt
Import toMatchPrompt
and use expect.extend
to extend default matchers.
import { describe, expect, test } from 'vitest';
import { toMatchPrompt } from 'expect-match-prompt';
expect.extend({ toMatchPrompt });
describe('toMatchPrompt', () => {
test('should match type of languages', async () => {
await expect('Hi, how are you?').toMatchPrompt('it should be English');
await expect('Hallo, wie geht es dir?').toMatchPrompt('it should be German');
await expect('Bonjour, comment ça va?').toMatchPrompt('it should be French');
});
});
The toMatchPrompt
matcher uses OpenAI's gpt-4o-mini-2024-07-18
model by default. Make sure to set the OPENAI_API_KEY
environment variable.
If you want to use a different model or provider, you can create a new matcher using createMatchPrompt
.
import { describe, expect, test } from 'vitest';
import { createMatchPrompt } from 'expect-match-prompt';
const toMatchPrompt = createMatchPrompt({
model: {
provider: 'openai',
modelId: 'gpt-4-turbo',
settings: { apiKey: 'sk-...' },
},
});
expect.extend({ toMatchPrompt });
describe('toMatchPrompt', () => {
/* ... */
});
Default matcher with OpenAI's gpt-4o-mini-2024-07-18
model.
Create a new matcher with a different model or provider.
The model
accepts a plain object or an instance of a LanguageModelV1 from one of the supported providers of AI SDK.
// Plain object
const toMatchPrompt = createMatchPrompt({
model: {
provider: 'openai',
modelId: 'gpt-4-turbo',
settings: { apiKey: 'sk-...' },
},
});
// AI SDK LanguageModelV1
import { anthropic } from '@ai-sdk/anthropic';
const toMatchPrompt = createMatchPrompt({
model: anthropic('claude-3-haiku-20240307'),
});
MIT