-
Notifications
You must be signed in to change notification settings - Fork 454
/
templates.json
53 lines (53 loc) · 1.53 KB
/
templates.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"code-interpreter-v1": {
"name": "Python data analyst",
"lib": ["python", "jupyter", "numpy", "pandas", "matplotlib", "seaborn", "plotly"],
"file": "script.py",
"instructions": "Runs code as a Jupyter notebook cell. Strong data analysis angle. Can use complex visualisation to explain results.",
"port": null
},
"nextjs-developer": {
"name": "Next.js developer",
"lib": ["nextjs@14.2.5", "typescript", "@types/node", "@types/react", "@types/react-dom", "postcss", "tailwindcss", "shadcn"],
"file": "pages/index.tsx",
"instructions": "A Next.js 13+ app that reloads automatically. Using the pages router.",
"port": 3000
},
"vue-developer": {
"name": "Vue.js developer",
"lib": ["vue@latest", "nuxt@3.13.0", "tailwindcss"],
"file": "app.vue",
"instructions": "A Vue.js 3+ app that reloads automatically. Only when asked specifically for a Vue app.",
"port": 3000
},
"streamlit-developer": {
"name": "Streamlit developer",
"lib": [
"streamlit",
"pandas",
"numpy",
"matplotlib",
"request",
"seaborn",
"plotly"
],
"file": "app.py",
"instructions": "A streamlit app that reloads automatically.",
"port": 8501
},
"gradio-developer": {
"name": "Gradio developer",
"lib": [
"gradio",
"pandas",
"numpy",
"matplotlib",
"request",
"seaborn",
"plotly"
],
"file": "app.py",
"instructions": "A gradio app. Gradio Blocks/Interface should be called demo.",
"port": 7860
}
}