-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.json
98 lines (98 loc) · 2.89 KB
/
info.json
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
{
"identifier": "me.vacuity.chat.gptranslate",
"version": "1.5.0",
"category": "translate",
"name": "GPTranslate",
"summary": "调用openai-chatgpt/google-gemini/anthropic-claude/xai-grok/ali-qwen实现翻译功能",
"icon": "",
"author": "vacuity",
"homepage": "",
"appcast": "https://raw.githubusercontent.com/vacuityv/bob-plugin-vac-gptranslate/develop/appcast.json",
"minBobVersion": "0.5.0",
"options": [
{
"identifier": "loginAccount",
"type": "text",
"title": "登录邮箱"
},
{
"identifier": "loginPassword",
"type": "text",
"title": "登录密码"
},
{
"identifier": "modelType",
"type": "menu",
"title": "模型选择",
"defaultValue": "gpt4o",
"menuValues": [
{
"title": "gpt-4o-mini",
"value": "gpt-4o-mini"
},
{
"title": "gpt3.5",
"value": "gpt3.5"
},
{
"title": "gpt4o",
"value": "gpt4o"
},
{
"title": "gemini-pro",
"value": "gemini-pro"
},
{
"title": "gemini-1.5-pro",
"value": "gemini-1.5-pro"
},
{
"title": "gemini-1.5-flash",
"value": "gemini-1.5-flash"
},
{
"title": "claude-3.5-sonnet",
"value": "claude-3.5-sonnet"
},
{
"title": "xai-grok-beta",
"value": "grok-beta"
},
{
"title": "ali-qwen-turbo",
"value": "qwen-turbo"
},
{
"title": "ali-qwen-plus",
"value": "qwen-plus"
}
]
},
{
"identifier": "useStreamFlag",
"type": "menu",
"title": "流式传输",
"defaultValue": "y",
"menuValues": [
{
"title": "不使用",
"value": "n"
},
{
"title": "使用(需要版本>=1.8.0)",
"value": "y"
}
]
},
{
"identifier": "prompt",
"type": "text",
"title": "prompt",
"textConfig": {
"type": "visible",
"height": 60,
"placeholderText": "请输入您自定义的prompt(如果你不知道prompt是什么,请不要输入)"
}
}
]
}