Update constants.py
Browse files- constants.py +17 -1
constants.py
CHANGED
@@ -72,4 +72,20 @@ AVAILABLE_MODELS = [
|
|
72 |
]
|
73 |
|
74 |
# Quick‑start demo list
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
]
|
73 |
|
74 |
# Quick‑start demo list
|
75 |
+
# Quick‑start demo list for the sidebar
|
76 |
+
DEMO_LIST = [
|
77 |
+
{"title": "Todo App", "description": "Create a simple todo application with add, delete, and mark as complete functionality"},
|
78 |
+
{"title": "Calculator", "description": "Build a basic calculator with addition, subtraction, multiplication, and division"},
|
79 |
+
{"title": "Chat Interface", "description": "Build a chat interface with message history and user input"},
|
80 |
+
{"title": "E-commerce Product Card", "description": "Create a product card component for an e-commerce website"},
|
81 |
+
{"title": "Login Form", "description": "Build a responsive login form with validation"},
|
82 |
+
{"title": "Dashboard Layout", "description": "Create a dashboard layout with sidebar navigation and main content area"},
|
83 |
+
{"title": "Data Table", "description": "Build a data table with sorting and filtering capabilities"},
|
84 |
+
{"title": "Image Gallery", "description": "Create an image gallery with lightbox functionality and responsive grid layout"},
|
85 |
+
{"title": "UI from Image", "description": "Upload an image of a UI design and I'll generate the HTML/CSS code for it"},
|
86 |
+
{"title": "Extract Text from Image", "description": "Upload an image containing text and I'll extract and process the text content"},
|
87 |
+
{"title": "Website Redesign", "description": "Enter a website URL to extract its content and redesign it with a modern, responsive layout"},
|
88 |
+
{"title": "Modify HTML", "description": "After generating HTML, ask me to modify it with specific changes using search/replace format"},
|
89 |
+
{"title": "Search/Replace Example", "description": "Generate HTML first, then ask: 'Change the title to My New Title' or 'Add a blue background to the body'"},
|
90 |
+
{"title": "Transformers.js App", "description": "Create a transformers.js application with AI/ML functionality using the transformers.js library"}
|
91 |
+
]
|