-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
26 lines (26 loc) · 1.08 KB
/
plugin.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
{
"id": "render_mermaid_diagram",
"uuid": "0bb7f6b3-d454-4ddd-a140-06d5dc2cd24d",
"title": "Mermaid Diagram",
"iconURL": "https://raw.githubusercontent.com/TypingMind/plugin-mermaid-diagram/main/mermaid.svg",
"openaiSpec": {
"name": "render_mermaid_diagram",
"parameters": {
"type": "object",
"required": ["title", "source"],
"properties": {
"title": {
"type": "string",
"description": "The title of the diagram."
},
"source": {
"type": "string",
"description": "The Mermaid diagram source in raw text to render."
}
}
},
"description": "Generate a diagram using Mermaid.js (version 10.x). This can be used to render various types of diagrams, including Flowchart, Sequence Diagram, Class Diagram, State Diagram, Entity Relationship Diagram, User Journey, Gantt, Pie Chart, Quadrant Chart, Requirement Diagram, Gitgraph Diagram, C4 Diagram, Mindmaps, Timeline, Zenuml, Sankey, XYChart, Block Diagram, etc."
},
"implementationType": "javascript",
"outputType": "render_html"
}