-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
109 lines (109 loc) · 3.48 KB
/
openclaw.plugin.json
File metadata and controls
109 lines (109 loc) · 3.48 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"id": "sprite-core",
"enabledByDefault": true,
"activation": {
"onStartup": true
},
"description": "In-gateway data plane for multi-state sprite/atlas avatars: asset serving and TTS streaming.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"assets": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"assetsDir": { "type": "string" },
"publicAssets": { "type": "boolean" },
"maxAssetSizeBytes": { "type": "number" },
"publicBaseUrl": { "type": "string" }
}
},
"streamTts": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"provider": { "type": "string", "enum": ["elevenlabs"] },
"apiKey": {},
"defaultModel": { "type": "string" }
}
},
"streamStt": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"provider": { "type": "string", "enum": ["elevenlabs"] },
"apiKey": {},
"defaultModel": { "type": "string" },
"maxBodyBytes": { "type": "number", "minimum": 0 }
}
},
"pixellab": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {},
"apiBase": { "type": "string" }
}
},
"agents": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"avatar": {},
"voice": {},
"pixellab": {
"type": "object",
"additionalProperties": false,
"required": ["characterId"],
"properties": {
"characterId": { "type": "string" },
"lastSyncedAt": { "type": "number" }
}
},
"prompting": {
"type": "object",
"additionalProperties": false,
"properties": {
"descriptions": {
"type": "object",
"additionalProperties": { "type": "string" }
},
"instruction": { "type": "string" }
}
},
"emotions": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"required": ["description"],
"properties": {
"description": { "type": "string" },
"directive": {
"type": "object",
"additionalProperties": false,
"properties": {
"voiceId": { "type": "string" },
"stability": { "type": "number", "minimum": 0, "maximum": 1 },
"similarity": { "type": "number", "minimum": 0, "maximum": 1 },
"style": { "type": "number", "minimum": 0, "maximum": 1 },
"speakerBoost": { "type": "boolean" },
"speed": { "type": "number", "minimum": 0.25, "maximum": 4 },
"audioTag": { "type": "string" }
}
}
}
}
}
}
}
}
}
}
}