UNPKG
jest-ai
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.1.0
1.0.0
0.0.3
0.0.2
0.0.1
0.0.0
Custom jest matchers for testing AI applications
github.com/codeably-io/jest-ai
codeably-io/jest-ai
jest-ai
/
dist
/
utils
/
similarity.d.ts
12 lines
(11 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
;