-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.schema.json
More file actions
73 lines (73 loc) · 2.41 KB
/
Copy pathconfig.schema.json
File metadata and controls
73 lines (73 loc) · 2.41 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "pi-council config",
"description": "Configuration for pi-council — multi-model AI council",
"type": "object",
"required": ["models", "profiles", "defaultProfile"],
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string"
},
"systemPrompt": {
"type": "string",
"description": "Deprecated. Use per-profile systemPrompt instead. If present, applied as a fallback to profiles that don't define their own."
},
"models": {
"type": "object",
"description": "Model definitions. Keys are model IDs, values are provider + model name.",
"additionalProperties": {
"type": "object",
"required": ["provider", "model"],
"additionalProperties": false,
"properties": {
"provider": {
"type": "string",
"description": "Provider ID recognized by pi"
},
"model": {
"type": "string",
"description": "Concrete model ID/name passed to pi unchanged"
}
}
}
},
"profiles": {
"type": "object",
"description": "Named profiles. Each profile defines which models to spawn and optional overrides.",
"additionalProperties": {
"type": "object",
"required": ["models"],
"additionalProperties": false,
"properties": {
"models": {
"type": "array",
"description": "Model IDs to spawn (must reference keys in the top-level models map)",
"items": {
"type": "string"
},
"minItems": 1
},
"systemPrompt": {
"type": "string",
"description": "System prompt for members in this profile. If omitted, a deprecated top-level systemPrompt is used when present."
}
"thinking": {
"type": "string",
"enum": ["off", "minimal", "low", "medium", "high", "xhigh"],
"description": "Thinking/reasoning level for all members in this profile"
},
"memberTimeoutMs": {
"type": "number",
"description": "Kill members that exceed this timeout (milliseconds)",
"minimum": 1000
}
}
}
},
"defaultProfile": {
"type": "string",
"description": "Which profile to use when none is specified"
}
}
}