-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathproduct.example.json
More file actions
62 lines (61 loc) · 1.4 KB
/
product.example.json
File metadata and controls
62 lines (61 loc) · 1.4 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
{
"$schema": "./product.schema.json",
"name": "Halo",
"dataFolderName": "halo",
"version": "1.0.0",
"updateConfig": {
"provider": "github",
"owner": "openkursar",
"repo": "hello-halo"
},
"authProviders": [
{
"type": "claude",
"displayName": {
"en": "Claude",
"zh-CN": "Claude"
},
"recommended": true,
"description": {
"en": "Claude Pro/Max, login with claude.ai account",
"zh-CN": "Claude Pro/Max, 使用 claude.ai 账号登录"
},
"icon": "log-in",
"iconBgColor": "#D97757",
"builtin": true,
"enabled": true
},
{
"type": "custom",
"displayName": {
"en": "Custom API",
"zh-CN": "自定义 API"
},
"description": {
"en": "Claude / OpenAI compatible",
"zh-CN": "兼容 Claude / OpenAI"
},
"icon": "key",
"iconBgColor": "#da7756",
"recommended": false,
"builtin": true,
"enabled": true
},
{
"type": "github-copilot",
"displayName": {
"en": "GitHub Copilot",
"zh-CN": "GitHub Copilot"
},
"description": {
"en": "Login with GitHub, use Copilot models",
"zh-CN": "GitHub 登录,使用 Copilot 模型"
},
"icon": "github",
"iconBgColor": "#24292e",
"recommended": false,
"builtin": true,
"enabled": true
}
]
}