@testyourai/jest
v0.0.11
Published
Prompt engineering text similarity matchers for Jest
Downloads
24
Maintainers
Readme
🤖 🧪 TestYourAI 🧪 🤖
AI testing toolkit for Jest!
Test Your AI prompts like a robot not a human! Testing and developing prompts has traditionally been tricky because the output a typical LLM creates is fuzzy and non deterministic but with @testyourai/jest
you can manage test regressions using Jest.
await expect("What a fine day!").toBeMoreSimilarTo(
"This weather is simply delightful.",
"It is a fine but weathered day bed."
);
This is a set of Jest matchers that use OpenAI embeddings to test for semantic similarities between strings. With these matchers, you can easily test if two strings are similar in meaning or compare the similarity of one string to multiple others.
Usage
To use these matchers, simply import the setupMatchers
function and pass the output to expect.extend
in your setup file or before your tests. Then simply use them with Jest's built-in expect function.
import {setupMatchers} from "@testyourai/jest";
import {expect} from "@jest/globals";
// Setup your matchers before your tests run
expect.extend(setupMatchers({
openAiApiKey: process.env.OPENAI_API_KEY, // required
model: "text-embedding-ada-002" // optional
}));
describe('String similarity tests', () => {
test('Hello -> Hi', async () => {
await expect('Hello').toBeSimilarTo('Hi');
});
test('Hello -> Yellow', async () => {
await expect('Hello').toBeSimilarTo('Yellow', 0.8);
});
test('Hello is more similar to Hi than Whistle or Lion', async () => {
await expect('Hello').toBeMoreSimilarTo('Hi', ['Whistle', 'Lion']);
});
});
Installation
You can install this package using your favourite npm client:
| Client | Command |
|---|---|
| npm | npm install --save-dev @testyourai/jest
|
| pnpm | pnpm add -D @testyourai/jest
|
| yarn | yarn add -D @testyourai/jest
|
ESM Mode only
You must use jest in ESM mode for now. This will change in future releases. To learn how to setup Jest in ECMAScript Module mode have a look here: https://jestjs.io/docs/ecmascript-modules
Matchers
toBeMoreSimilarTo(expected: string, others: string[] | string)
Checks if the tested string is more similar in meaning to the expected string than it is to any of the other strings provided. The others parameter can be a single string or an array of strings.
Example:
test('Hello is more similar to Hi than Whistle or Lion', async () => {
await expect('Hello').toBeMoreSimilarTo('Hi', ['Whistle', 'Lion']);
});
toBeSimilarTo(expected: string, threshold?: number)
Checks if the tested string is similar in meaning to the expected string. The optional threshold parameter sets the minimum similarity score required for the test to pass (default is 0.85).
Example:
test('Hello -> Hi', async () => {
await expect('Hello').toBeSimilarTo('Hi');
});
Caching
All embedding calls are only made once to save tokens and are cached to a file: /tmp/.tyai-embeddings.json
. One day this behaviour will be configurable and optional but that day is not today.
Contributing
Contributions are welcome! If you find a bug or have a feature request, please open an issue on the GitHub repository. If you'd like to contribute code, please fork the repository and submit a pull request.
- Clone this repository
- Install dependencies
pnpm install
- Copy
.env.example
to.env
file and supply yourOPENAI_API_KEY
- Run tests by
pnpm test