-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcategory.py
More file actions
62 lines (56 loc) · 1.54 KB
/
category.py
File metadata and controls
62 lines (56 loc) · 1.54 KB
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
61
62
ACE_DATA_CATEGORY = {
"normal":[
"normal_single_turn_single_function",
"normal_single_turn_parallel_function",
"normal_multi_turn_user_adjust",
"normal_multi_turn_user_switch",
"normal_similar_api",
"normal_preference",
"normal_atom_bool",
"normal_atom_enum",
"normal_atom_number",
"normal_atom_list",
"normal_atom_object_deep",
"normal_atom_object_short",
],
"special": [
"special_incomplete",
"special_error_param",
"special_irrelevant",
],
"agent":[
"agent_multi_step",
"agent_multi_turn",
],
"atom":[
"normal_atom_bool",
"normal_atom_enum",
"normal_atom_number",
"normal_atom_list",
"normal_atom_object_deep",
"normal_atom_object_short",
],
"multi_turn":[
"normal_multi_turn_user_adjust",
"normal_multi_turn_user_switch",
],
"test_all":[
"normal_single_turn_single_function",
"normal_single_turn_parallel_function",
"normal_multi_turn_user_adjust",
"normal_multi_turn_user_switch",
"normal_similar_api",
"normal_preference",
"normal_atom_bool",
"normal_atom_enum",
"normal_atom_number",
"normal_atom_list",
"normal_atom_object_deep",
"normal_atom_object_short",
"special_incomplete",
"special_error_param",
"special_irrelevant",
"agent_multi_step",
"agent_multi_turn",
]
}