π README: Sandbox-First Architecture docs
Browse files
README.md
CHANGED
|
@@ -1,26 +1,54 @@
|
|
| 1 |
-
-
|
| 2 |
-
tags:
|
| 3 |
-
- ml-intern
|
| 4 |
-
---
|
| 5 |
|
| 6 |
-
|
| 7 |
|
| 8 |
-
|
| 9 |
-
## Generated by ML Intern
|
| 10 |
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
-
- Source code: https://github.com/huggingface/ml-intern
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 20 |
|
| 21 |
-
model_id = 'dryymatt/Wizard-Vibe-Core'
|
| 22 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 23 |
-
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 24 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
|
|
|
| 1 |
+
# π§ββοΈ Wizard-Vibe Core
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
> **Sandbox-First Architecture** β single-file SSE streaming code generator with Reflect-Select self-healing and A2A native deploy.
|
| 4 |
|
| 5 |
+
## Quick Start
|
|
|
|
| 6 |
|
| 7 |
+
```bash
|
| 8 |
+
chmod +x sandbox.sh && ./sandbox.sh
|
| 9 |
+
```
|
| 10 |
|
| 11 |
+
Or with hot-reload:
|
|
|
|
| 12 |
|
| 13 |
+
```bash
|
| 14 |
+
HOT_RELOAD=1 ./sandbox.sh
|
| 15 |
+
```
|
| 16 |
|
| 17 |
+
## Architecture
|
|
|
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 19 |
```
|
| 20 |
+
core.py β Single-file: SSE server + orchestrator + self-heal + deploy
|
| 21 |
+
hot_reload.py β File watcher for dev mode (auto-restart on changes)
|
| 22 |
+
static/ β Liquid Glass UI (minimalist HTML/CSS/JS)
|
| 23 |
+
sandbox.sh β One-command bootstrap
|
| 24 |
+
Dockerfile β Containerized deployment
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## API
|
| 28 |
+
|
| 29 |
+
| Endpoint | Method | Description |
|
| 30 |
+
|----------|--------|-------------|
|
| 31 |
+
| `/` | GET | Liquid Glass UI |
|
| 32 |
+
| `/api/health` | GET | Health check |
|
| 33 |
+
| `/api/stream` | POST | SSE streaming code generation |
|
| 34 |
+
| `/api/publish` | POST | GitHub + A2A deploy |
|
| 35 |
+
| `/api/status?session_id=X` | GET | Session status |
|
| 36 |
+
| `/api/preview?session_id=X` | GET | Sandbox iframe content |
|
| 37 |
+
| `/.well-known/agent.json` | GET | A2A agent card |
|
| 38 |
+
|
| 39 |
+
## Models
|
| 40 |
+
|
| 41 |
+
- Vision/UI β `microsoft/Phi-3-vision-128k-instruct`
|
| 42 |
+
- Logic/Backend β `deepseek-ai/DeepSeek-V3-0324`
|
| 43 |
+
- Code/Infra β `Qwen/Qwen3-Coder-30B-A3B-Instruct`
|
| 44 |
+
- Fallback β `mistralai/Mistral-7B-Instruct-v0.3`
|
| 45 |
+
|
| 46 |
+
## Links
|
| 47 |
+
|
| 48 |
+
- **HF Repo**: https://huggingface.co/dryymatt/Wizard-Vibe-Core
|
| 49 |
+
- **HF Space**: https://dryymatt-wizard-vibe-core.hf.space
|
| 50 |
+
- **GitHub Mirror**: https://github.com/M523zappin/Wizard-Vibe-Core
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
|
| 54 |
+
*Built with the Reflect-Select self-healing architecture. Every line validated in sandbox before publish.*
|