-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
304e871
commit ec8f06e
Showing
1 changed file
with
22 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,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", | ||
"strict": true, | ||
"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." | ||
} | ||
} | ||
"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." | ||
}, | ||
"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." | ||
"source": { | ||
"type": "string", | ||
"description": "The Mermaid diagram source in raw text to render." | ||
} | ||
} | ||
}, | ||
"implementationType": "javascript", | ||
"outputType": "render_html" | ||
"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" | ||
} |