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

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # 🧙‍♂️ Wizard-Vibe Core
2
 
3
  > **Sandbox-First Architecture** — single-file SSE streaming code generator with Reflect-Select self-healing and A2A native deploy.
@@ -52,3 +56,23 @@ Dockerfile ← Containerized deployment
52
  ---
53
 
54
  *Built with the Reflect-Select self-healing architecture. Every line validated in sandbox before publish.*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # 🧙‍♂️ Wizard-Vibe Core
6
 
7
  > **Sandbox-First Architecture** — single-file SSE streaming code generator with Reflect-Select self-healing and A2A native deploy.
 
56
  ---
57
 
58
  *Built with the Reflect-Select self-healing architecture. Every line validated in sandbox before publish.*
59
+
60
+ <!-- ml-intern-provenance -->
61
+ ## Generated by ML Intern
62
+
63
+ 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.
64
+
65
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
66
+ - Source code: https://github.com/huggingface/ml-intern
67
+
68
+ ## Usage
69
+
70
+ ```python
71
+ from transformers import AutoModelForCausalLM, AutoTokenizer
72
+
73
+ model_id = 'dryymatt/Wizard-Vibe-Core'
74
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
75
+ model = AutoModelForCausalLM.from_pretrained(model_id)
76
+ ```
77
+
78
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.