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
This model repository was generated by
ML Intern, an agent for machine learning research and development on the Hugging Face Hub.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = 'dryymatt/Wizard-Vibe-Core'
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)