-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathopencode-easy-vision.example.jsonc
More file actions
32 lines (28 loc) · 1.12 KB
/
Copy pathopencode-easy-vision.example.jsonc
File metadata and controls
32 lines (28 loc) · 1.12 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
{
// Which models this plugin activates for.
// Wildcards: "*" = all, "provider/*" = all from provider,
// "*/model" = specific model from any provider, "provider/model" = exact.
"models": [
"minimax/*",
"minimax-cn/*",
"minimax-coding-plan/*",
"minimax-cn-coding-plan/*",
"minimax-token-plan/*",
"minimax-cn-token-plan/*",
],
// MCP tool name for image analysis.
// Use the exact tool name OpenCode exposes.
"imageAnalysisTool": "mcp_minimax_understand_image",
// Custom prompt template. Must include at least one variable:
// {imageList} — newline-separated "- Image N: /path"
// {imageCount} — number of images
// {toolName} — the configured MCP tool name
// {userText} — the user's original text (may be empty)
// Leave as null to use the built-in default template.
"promptTemplate": null,
// Directory where pasted images are saved before being passed to the MCP tool.
// Leave as null to use the OS temp directory + "opencode-easy-vision/".
"tempDir": null,
// Delete temp files older than this many hours on plugin startup.
"cleanupAfterHours": 24,
}