-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunpod.tests.json
60 lines (60 loc) · 1.14 KB
/
runpod.tests.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"tests": [
{
"name": "validation_text_input",
"mode": "COMPARE_OUTPUTS_EQUAL",
"input": {
"text": "Hello world",
"language": "en"
},
"expectedOutput": {
"payload": {
"text": "Hello world",
"language": "en"
}
}
},
{
"name": "validation_text_input",
"mode": "COMPARE_OUTPUTS_SIMILARITY_WITH_LLM",
"llmSimilarityThreshold": 0.8,
"input": {
"text": "Hello world",
"language": "en"
},
"expectedOutput": {
"payload": {
"text": "Hello world",
"language": "en"
}
}
},
{
"name": "validation_text_input",
"mode": "COMPARE_OUTPUTS_NOT_NULL",
"input": {
"text": "Hello world",
"language": "en"
}
}
],
"config": {
"gpuTypeId": "NVIDIA GeForce RTX 4090",
"gpuCount": 1,
"env": [{
"key": "ENV_KEY_HERE",
"value": "ENV_VALUE_HERE"
}],
"allowedCudaVersions": [
"12.7",
"12.6",
"12.5",
"12.4",
"12.3",
"12.2",
"12.1",
"12.0",
"11.7"
]
}
}