-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
25 lines (25 loc) · 1.05 KB
/
plugin.json
File metadata and controls
25 lines (25 loc) · 1.05 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
{
"id": "render_web_app",
"uuid": "af76c947-6deb-435e-8338-a712c8b36eb0",
"emoji": "🔨",
"iconURL": "https://raw.githubusercontent.com/TypingMind/plugin-web-app-builder/refs/heads/main/icon.svg",
"title": "Web App Builder",
"openaiSpec": {
"name": "render_web_app",
"parameters": {
"type": "object",
"required": [
"htmlSource"
],
"properties": {
"htmlSource": {
"type": "string",
"description": "The HTML source to render to the canvas."
}
}
},
"description": "Render an interactive web app with HTML/CSS/JS source to the user interface. The HTML source can include JavaScript and CSS to create interactive elements. This can be used to create custom user interfaces, games, demos, charts, simple web apps, and more. Use this plugin when the user ask to create a web app, a interactive demo, a game, or some other types of interactive content."
},
"implementationType": "javascript",
"outputType": "render_html"
}