A small no-build web app for designing a simple Small Language Model setup with drag-and-drop blocks.
- Build a model setup with visual blocks
- Generate a JSON blueprint
- Load an example project
- Download the result as a
.jsonfile - Show a plain-language block guide for non-technical users
.
|-- index.html
|-- README.md
|-- .gitignore
|-- assets/
| |-- css/
| | `-- style.css
| `-- js/
| `-- app.js
`-- archive/
`-- app.legacy.js
Open a terminal in the project folder and run:
py -m http.server 8000Then open:
To stop the server, press Ctrl+C.
- The app uses Blockly from a CDN.
- If the CDN is blocked, the page now shows a fallback message instead of silently failing.
- The active app script is
assets/js/app.js. archive/app.legacy.jsis kept only as a backup of the older script.
Upload these files and folders:
index.htmlREADME.md.gitignoreassets/archive/(optional)
You can skip local-only files such as .idea/, server.log, server.err, and progress.md.