UNPKG

jest-ai

Version:

Custom jest matchers for testing AI applications

12 lines (11 loc) 272 B
export declare enum Similarity { LOW = "low", MID = "mid", HIGH = "high" } export declare enum SimilarityConfidenceThreshold { LOW = 0.7, MID = 0.75, HIGH = 0.85 } export declare function isSimilarByScore(rank: Similarity, score: number): boolean;