dryymatt commited on
Commit
7cf9def
Β·
verified Β·
1 Parent(s): b3c69c8

πŸ“– README: Sandbox-First Architecture docs

Browse files
Files changed (1) hide show
  1. README.md +45 -17
README.md CHANGED
@@ -1,26 +1,54 @@
1
- ---
2
- tags:
3
- - ml-intern
4
- ---
5
 
6
- # dryymatt/Wizard-Vibe-Core
7
 
8
- <!-- ml-intern-provenance -->
9
- ## Generated by ML Intern
10
 
11
- This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
 
 
12
 
13
- - Try ML Intern: https://smolagents-ml-intern.hf.space
14
- - Source code: https://github.com/huggingface/ml-intern
15
 
16
- ## Usage
 
 
17
 
18
- ```python
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
- For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
 
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.*