-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.json
More file actions
94 lines (94 loc) · 1.96 KB
/
Copy pathopenclaw.json
File metadata and controls
94 lines (94 loc) · 1.96 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": "1.0",
"workspace": "./workspace",
"llm": {
"provider": "minimax",
"api_key": "${MINIMAX_API_KEY}",
"base_url": "https://api.minimax.chat/v1"
},
"agents": [
{
"id": "coordinator",
"name": "Coordinator",
"identity": "./agents/coordinator/identity.md",
"model": "minimax-m2.1",
"tools": [
"sessions_send",
"read_file",
"write_file",
"list_files",
"get_session_status"
]
},
{
"id": "hr_trainer",
"name": "HR & Trainer",
"identity": "./agents/hr_trainer/identity.md",
"model": "minimax-m2.1",
"tools": [
"read_file",
"write_file",
"sessions_send"
]
},
{
"id": "sales_lead",
"name": "Sales Lead",
"identity": "./agents/sales_lead/identity.md",
"model": "minimax-m2.5-highspeed",
"tools": [
"read_file",
"write_file",
"sessions_send"
]
},
{
"id": "supply_lead",
"name": "Supply Chain Lead",
"identity": "./agents/supply_lead/identity.md",
"model": "minimax-m2.1",
"tools": [
"read_file",
"write_file",
"sessions_send"
]
},
{
"id": "ops_lead",
"name": "Operations Lead",
"identity": "./agents/ops_lead/identity.md",
"model": "minimax-m2.1",
"tools": [
"read_file",
"write_file",
"sessions_send"
]
},
{
"id": "finance_lead",
"name": "Finance Lead",
"identity": "./agents/finance_lead/identity.md",
"model": "minimax-m2.1",
"tools": [
"read_file",
"write_file",
"sessions_send"
]
}
],
"server": {
"port": 18789,
"host": "0.0.0.0"
},
"database": {
"host": "postgres",
"port": 5432,
"name": "openclaw",
"user": "openclaw",
"password": "${POSTGRES_PASSWORD}"
},
"redis": {
"host": "redis",
"port": 6379
}
}