-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpg.plugin.json
More file actions
50 lines (50 loc) · 1.43 KB
/
Copy pathpg.plugin.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"id": "memory-postgrest",
"kind": "memory",
"uiHints": {
"apiKey": {
"label": "API Key",
"placeholder": "CloudBase HTTP API Key",
"help": "CloudBase PostgreSQL RESTful API 的 api-key。"
},
"envId": {
"label": "Env ID",
"placeholder": "your-cloudbase-env-id",
"help": "CloudBase 环境 ID(envid)。"
},
"postgrestUrl": {
"label": "CloudBase PostgreSQL RESTful API 地址",
"placeholder": "https://...",
"help": "CloudBase PostgreSQL RESTful API 地址。通常由运行环境提供;如需覆盖可在此填写。",
"advanced": true
},
"userId": {
"label": "User ID",
"placeholder": "default",
"help": "用于隔离不同用户的记忆数据。",
"advanced": true
},
"autoRecall": {
"label": "Auto-Recall",
"help": "对话前自动注入相关记忆到上下文中。"
},
"autoCapture": {
"label": "Auto-Capture",
"help": "对话后自动捕获重要信息存入记忆。",
"advanced": true
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"envId": { "type": "string" },
"postgrestUrl": { "type": "string" },
"userId": { "type": "string" },
"autoRecall": { "type": "boolean" },
"autoCapture": { "type": "boolean" }
},
"required": ["apiKey", "envId"]
}
}