File size: 1,324 Bytes
04666ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "dispatchAI Inference Test Suite",
  "version": "1.0",
  "tests": [
    {
      "id": "qa_capital",
      "prompt": "What is the capital of France?",
      "expected_contains": "paris",
      "category": "qa"
    },
    {
      "id": "qa_continent",
      "prompt": "How many continents are there?",
      "expected_contains": "7",
      "category": "qa"
    },
    {
      "id": "math_add",
      "prompt": "What is 2+2? Just the number.",
      "expected_contains": "4",
      "category": "math"
    },
    {
      "id": "math_mult",
      "prompt": "What is 3*3? Just the number.",
      "expected_contains": "9",
      "category": "math"
    },
    {
      "id": "greeting",
      "prompt": "Write a one-sentence greeting.",
      "expected_type": "string",
      "category": "creative"
    },
    {
      "id": "code_func",
      "prompt": "Write a function that returns 'hello'",
      "expected_contains": "def",
      "category": "code"
    },
    {
      "id": "summary",
      "prompt": "Summarize in one sentence: The quick brown fox jumps over the lazy dog.",
      "expected_type": "string",
      "category": "summarization"
    },
    {
      "id": "classify",
      "prompt": "Is this spam? 'WINNER! Click here!'",
      "expected_contains": "spam",
      "category": "classification"
    }
  ]
}