-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
111 lines (111 loc) · 2.67 KB
/
openclaw.plugin.json
File metadata and controls
111 lines (111 loc) · 2.67 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
110
111
{
"id": "memory-multimodal-ingest",
"name": "Memory (Multimodal Ingest)",
"description": "Store and search multimodal memories with Gemini Embedding 2 and LanceDB",
"version": "0.1.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"embedding": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"model": {
"type": "string"
},
"apiBase": {
"type": "string"
},
"baseURL": {
"type": "string"
},
"dimensions": {
"type": "integer",
"minimum": 1
}
},
"required": [
"apiKey"
]
},
"dbPath": {
"type": "string"
},
"blobPath": {
"type": "string"
},
"maxInlineBytes": {
"type": "integer",
"minimum": 1024,
"default": 8388608
},
"modalities": {
"type": "object",
"additionalProperties": false,
"properties": {
"image": {
"type": "boolean",
"default": true
},
"video": {
"type": "boolean",
"default": true
},
"audio": {
"type": "boolean",
"default": true
},
"pdf": {
"type": "boolean",
"default": true
}
}
}
},
"required": [
"embedding"
]
},
"uiHints": {
"embedding.apiKey": {
"label": "Gemini API Key",
"sensitive": true,
"placeholder": "${GEMINI_API_KEY}"
},
"embedding.model": {
"label": "Embedding Model",
"placeholder": "gemini-embedding-2-preview",
"help": "Gemini multimodal embedding model name"
},
"embedding.apiBase": {
"label": "API Base",
"placeholder": "https://generativelanguage.googleapis.com/v1beta",
"advanced": true
},
"embedding.baseURL": {
"label": "Base URL (Alias)",
"placeholder": "https://generativelanguage.googleapis.com/v1beta",
"help": "Deprecated alias for embedding.apiBase",
"advanced": true
},
"dbPath": {
"label": "Database Path",
"placeholder": "~/.openclaw/memory/lancedb-multimodal",
"advanced": true
},
"blobPath": {
"label": "Blob Path",
"placeholder": "~/.openclaw/memory/blobs",
"advanced": true
},
"maxInlineBytes": {
"label": "Max Inline Bytes",
"help": "Reject files larger than this size for the current inline_data MVP",
"advanced": true
}
}
}