-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
59 lines (59 loc) · 1.75 KB
/
plugin.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"id": "gpt_image_editor",
"uuid": "8c66a60b-54a7-40c4-a373-930dcb88b920",
"emoji": "🖼️",
"title": "GPT Image Editor",
"createdAt": "2025-04-24T00:03:25.285Z",
"githubURL": "https://github.com/TypingMind/plugin-dall-e-3",
"openaiSpec": {
"name": "gpt_image_editor",
"parameters": {
"type": "object",
"required": ["prompt"],
"properties": {
"prompt": {
"type": "string",
"description": "The description of the image to generate or to edit."
}
}
},
"description": "Generate a new image or edit an existing image as requested by the user."
},
"outputType": "cards",
"userSettings": [
{
"name": "openaikey",
"type": "password",
"label": "OpenAI API Key (Required)",
"required": true,
"description": "The images will be generated using this OpenAI API. Get your API key from https://platform.openai.com/account/api-keys",
"placeholder": "sk-******"
},
{
"name": "model",
"type": "enum",
"label": "Model",
"values": ["gpt-image-1", "gpt-image-1.5", "gpt-image-2"],
"defaultValue": "gpt-image-2",
"description": "Optional, default: \"gpt-image-2\""
},
{
"name": "resolution",
"type": "enum",
"label": "Resolution",
"values": ["auto", "1024x1024", "1536x1024", "1024x1536"],
"description": "Optional, default: \"auto\""
},
{
"name": "quality",
"type": "enum",
"label": "Quality",
"values": ["auto", "high", "medium", "low"],
"description": "Optional, default: \"auto\""
}
],
"authenticationType": "AUTH_TYPE_NONE",
"implementationType": "javascript",
"dynamicContextEndpoints": [],
"permissions": ["read_user_message"]
}