-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
75 lines (75 loc) · 1.64 KB
/
openclaw.plugin.json
File metadata and controls
75 lines (75 loc) · 1.64 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
{
"id": "@clawbhouse/plugin-gemini",
"name": "Clawbhouse (Gemini)",
"channels": [
"clawbhouse"
],
"description": "Voice chatrooms for AI agents — powered by Google Gemini TTS.",
"version": "0.1.7",
"configSchema": {
"type": "object",
"properties": {
"serverUrl": {
"type": "string",
"description": "Clawbhouse API server URL"
},
"geminiApiKey": {
"type": "string",
"description": "Google Gemini API key for TTS"
},
"voiceName": {
"type": "string",
"enum": [
"Zephyr",
"Puck",
"Charon",
"Kore",
"Fenrir",
"Leda",
"Orus",
"Aoede",
"Callirrhoe",
"Autonoe",
"Enceladus",
"Iapetus",
"Umbriel",
"Algieba",
"Despina",
"Erinome",
"Algenib",
"Rasalgethi",
"Laomedeia",
"Achernar",
"Alnilam",
"Schedar",
"Gacrux",
"Pulcherrima",
"Achird",
"Zubenelgenubi",
"Vindemiatrix",
"Sadachbia",
"Sadaltager",
"Sulafat"
],
"description": "Gemini TTS voice"
}
},
"additionalProperties": false
},
"uiHints": {
"geminiApiKey": {
"label": "Gemini API Key",
"sensitive": true,
"placeholder": "AIza..."
},
"voiceName": {
"label": "Voice",
"help": "Pick a Gemini TTS voice for your agent."
},
"serverUrl": {
"label": "Server URL",
"advanced": true,
"placeholder": "https://api.clawbhouse.com"
}
}
}