File size: 2,294 Bytes
7bdbe61
 
 
 
7cf9def
bb43914
7cf9def
bb43914
7cf9def
bb43914
7cf9def
 
 
bb43914
7cf9def
bb43914
7cf9def
 
 
bb43914
7cf9def
bb43914
 
7cf9def
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bb43914
7cf9def
7bdbe61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
tags:
- ml-intern
---
# πŸ§™β€β™‚οΈ Wizard-Vibe Core

> **Sandbox-First Architecture** β€” single-file SSE streaming code generator with Reflect-Select self-healing and A2A native deploy.

## Quick Start

```bash
chmod +x sandbox.sh && ./sandbox.sh
```

Or with hot-reload:

```bash
HOT_RELOAD=1 ./sandbox.sh
```

## Architecture

```
core.py          ← Single-file: SSE server + orchestrator + self-heal + deploy
hot_reload.py    ← File watcher for dev mode (auto-restart on changes)
static/          ← Liquid Glass UI (minimalist HTML/CSS/JS)
sandbox.sh       ← One-command bootstrap
Dockerfile       ← Containerized deployment
```

## API

| Endpoint | Method | Description |
|----------|--------|-------------|
| `/` | GET | Liquid Glass UI |
| `/api/health` | GET | Health check |
| `/api/stream` | POST | SSE streaming code generation |
| `/api/publish` | POST | GitHub + A2A deploy |
| `/api/status?session_id=X` | GET | Session status |
| `/api/preview?session_id=X` | GET | Sandbox iframe content |
| `/.well-known/agent.json` | GET | A2A agent card |

## Models

- Vision/UI β†’ `microsoft/Phi-3-vision-128k-instruct`
- Logic/Backend β†’ `deepseek-ai/DeepSeek-V3-0324`
- Code/Infra β†’ `Qwen/Qwen3-Coder-30B-A3B-Instruct`
- Fallback β†’ `mistralai/Mistral-7B-Instruct-v0.3`

## Links

- **HF Repo**: https://huggingface.co/dryymatt/Wizard-Vibe-Core
- **HF Space**: https://dryymatt-wizard-vibe-core.hf.space
- **GitHub Mirror**: https://github.com/M523zappin/Wizard-Vibe-Core

---

*Built with the Reflect-Select self-healing architecture. Every line validated in sandbox before publish.*

<!-- ml-intern-provenance -->
## Generated by ML Intern

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.

- Try ML Intern: https://smolagents-ml-intern.hf.space
- Source code: https://github.com/huggingface/ml-intern

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = 'dryymatt/Wizard-Vibe-Core'
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
```

For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.