Skip to content

Commit

Permalink
Revert strict spec
Browse files Browse the repository at this point in the history
  • Loading branch information
vietanhlehuu committed Aug 7, 2024
1 parent 304e871 commit ec8f06e
Showing 1 changed file with 22 additions and 26 deletions.
48 changes: 22 additions & 26 deletions plugin.json
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"
}

0 comments on commit ec8f06e

Please sign in to comment.