forked from erwinmsmith/SOMAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
52 lines (52 loc) · 1.27 KB
/
config.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"api_keys": {
"deepseek_chat": "yours"
},
"agents": {
"planner": {
"prompt_path": "prompts/planner.txt",
"description": "规划agent,负责制定行动计划"
},
"actor": {
"prompt_path": "prompts/actor.txt",
"description": "执行agent,负责执行具体任务"
},
"rewarder": {
"prompt_path": "prompts/rewarder.txt",
"description": "评估agent,负责评估执行结果"
},
"quiz_master": {
"prompt_path": "prompts/quiz_master.txt",
"description": "问答agent,负责生成测试问题"
}
},
"database": {
"experience_pool": "data/experience_pool.json",
"knowledge_db": "data/knowledge_db.json"
},
"ppo_config": {
"sample_size": 100,
"learning_rate": 3e-5,
"batch_size": 50,
"epochs": 3
},
"model_paths": {
"local_model": "safety_oriented_mas/Qwen3-1.7B/",
"embedding_model": "safety_oriented_mas/bge-small-en-v1.5/"
},
"actor": {
"model_paths": {
"local_model": "safety_oriented_mas/Qwen3-1.7B/"
},
"max_new_tokens": 512,
"temperature": 0.7
},
"rewarder": {
"api_key": "yours",
"model_paths": {
"local_model": "safety_oriented_mas/Qwen3-1.7B/"
},
"max_new_tokens": 512,
"temperature": 0.7
}
}