-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json.example
More file actions
66 lines (66 loc) · 1.11 KB
/
config.json.example
File metadata and controls
66 lines (66 loc) · 1.11 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
63
64
65
66
{
"global": {
"llm_client": {
"provider_type": "openai",
"base_url": "http://127.0.0.1:5678/v1",
"model": "llama-3.1-8B-instruct-Q8_0",
"api_key": "token-abc123"
},
"result_logger": {
"base_dir": "./results",
"run_name": "test_run"
},
"data_provider": {
"news": "cmin",
"price": "cmin"
},
"run_settings": {
"tickers": [],
"start_date": "",
"end_date": "",
"max_entries": "10000"
},
"else": {
"price_k": 5,
"factor_k": 5
}
},
"stages": [
{
"type": "data_fetch",
"version": "v1",
"config": {
}
},
{
"type": "news_text_format",
"version": "v1",
"config": {
}
},
{
"type": "price_text_format",
"version": "v1",
"config": {
}
},
{
"type": "factor_extract",
"version": "v1",
"config": {
}
},
{
"type": "price_analysis",
"version": "v1",
"config": {
}
},
{
"type": "resolve_prediction",
"version": "v1",
"config": {
}
}
]
}