Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,26 +1,87 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
tags:
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
-
#
|
| 7 |
|
| 8 |
-
|
| 9 |
-
## Generated by ML Intern
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 20 |
|
| 21 |
-
model_id = 'dryymatt/Wizard-Vibe-Studio'
|
| 22 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 23 |
-
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 24 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Wizard-Vibe-Studio
|
| 3 |
+
emoji: π§ββοΈ
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: indigo
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 7860
|
| 8 |
+
pinned: true
|
| 9 |
+
license: mit
|
| 10 |
tags:
|
| 11 |
+
- omni-vibe
|
| 12 |
+
- wizard-vibe
|
| 13 |
+
- liquid-glass
|
| 14 |
+
- a2a
|
| 15 |
+
- swarm
|
| 16 |
+
- litehat
|
| 17 |
---
|
| 18 |
|
| 19 |
+
# π§ββοΈ Omni-Vibe Studio β The Athanor
|
| 20 |
|
| 21 |
+
**Sovereign Registry** for the Wizard-Vibe Studio, powered by the **Litehat** system.
|
|
|
|
| 22 |
|
| 23 |
+
> *"Distill the Fire"* β Syntaxis Prime
|
| 24 |
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
## Specialized Swarm
|
| 28 |
+
|
| 29 |
+
| Pose | Role |
|
| 30 |
+
|------|------|
|
| 31 |
+
| **Pose Architect** | Full-stack schema + zero-config SQLite + Google OAuth out-of-the-box |
|
| 32 |
+
| **Pose Painter** | Liquid Glass design system enforced on every generated app |
|
| 33 |
+
| **Pose Auditor** | Step-by-step code verification before hot-reload |
|
| 34 |
|
| 35 |
+
---
|
| 36 |
|
| 37 |
+
## Architecture
|
|
|
|
| 38 |
|
|
|
|
|
|
|
|
|
|
| 39 |
```
|
| 40 |
+
wizard-vibe-studio/
|
| 41 |
+
βββ core.py β Omni-Vibe engine: 3 Poses + Reflect-Select + LiteRT
|
| 42 |
+
βββ server.py β aiohttp SSE server (port 7860)
|
| 43 |
+
βββ ghost_deploy.py β Tokenless publisher: HF Spaces + Pinggy/Cloudflare
|
| 44 |
+
βββ hot_reload.py β Watchdog-based dev mode
|
| 45 |
+
βββ static/ β Liquid Glass UI
|
| 46 |
+
βββ generated/ β Sandbox output
|
| 47 |
+
βββ Dockerfile
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
---
|
| 51 |
+
|
| 52 |
+
## Endpoints
|
| 53 |
+
|
| 54 |
+
| Method | Route | Purpose |
|
| 55 |
+
|--------|-------|---------|
|
| 56 |
+
| `HEAD` | `/` | HF health probe β 200 OK in <1ms |
|
| 57 |
+
| `GET` | `/` | Liquid Glass landing page |
|
| 58 |
+
| `POST` | `/api/stream` | SSE streaming code generation |
|
| 59 |
+
| `POST` | `/api/publish` | Ghost Deploy to HF Spaces |
|
| 60 |
+
| `GET` | `/api/health` | System health |
|
| 61 |
+
| `GET` | `/api/status` | Sandbox status per-session |
|
| 62 |
+
| `GET` | `/api/tunnel` | Pinggy/Cloudflare ephemeral URL |
|
| 63 |
+
| `GET` | `/.well-known/agent.json` | A2A agent card |
|
| 64 |
+
|
| 65 |
+
---
|
| 66 |
+
|
| 67 |
+
## First Deploy
|
| 68 |
+
|
| 69 |
+
```bash
|
| 70 |
+
# Start the swarm
|
| 71 |
+
python server.py
|
| 72 |
+
|
| 73 |
+
# Test health check
|
| 74 |
+
curl -I http://localhost:7860/ # β 200 OK
|
| 75 |
+
curl http://localhost:7860/api/health # β swarm status
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
---
|
| 79 |
+
|
| 80 |
+
## Live
|
| 81 |
+
|
| 82 |
+
- **Registry**: https://huggingface.co/dryymatt/Wizard-Vibe-Studio
|
| 83 |
+
- **Studio Space**: https://dryymatt-wizard-vibe-studio-v2.hf.space
|
| 84 |
+
|
| 85 |
+
---
|
| 86 |
|
| 87 |
+
*Litehat Β· Syntaxis Prime Β· Omni-Vibe Protocol*
|