-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-template.json
60 lines (60 loc) · 1.12 KB
/
config-template.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
{
"cache_dir": "./cache/<<PATH_TO_CACHE_DIR>>",
"gold_standard_configuration": {
"path": "<<PATH_TO_ANSWER_CSV>>",
"hasHeader": "false"
},
"source_artifact_provider": {
"name": "text",
"args": {
"artifact_type": "requirement",
"path": "<<PATH_TO_REQUIREMENTS>>"
}
},
"target_artifact_provider": {
"name": "text",
"args": {
"artifact_type": "requirement",
"path": "<<PATH_TO_OTHER_REQUIREMENTS>>"
}
},
"source_preprocessor": {
"name": "artifact",
"args": {}
},
"target_preprocessor": {
"name": "artifact",
"args": {}
},
"embedding_creator": {
"name": "openai",
"args": {
"model": "text-embedding-3-large"
}
},
"source_store": {
"name": "custom",
"args": {}
},
"target_store": {
"name": "custom",
"args": {
"max_results": "4"
}
},
"classifier": {
"name": "reasoning_openai",
"args": {
"model": "gpt-4o-mini-2024-07-18"
}
},
"result_aggregator": {
"name": "any_connection",
"args": {
}
},
"tracelinkid_postprocessor": {
"name": "identity",
"args": {}
}
}