Instructions to use Daizee/X-Ray_Alpha-mlx-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use Daizee/X-Ray_Alpha-mlx-4bit with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir X-Ray_Alpha-mlx-4bit Daizee/X-Ray_Alpha-mlx-4bit
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
Upload chat_template.jinja
Browse files- chat_template.jinja +4 -0
chat_template.jinja
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% for m in messages %}
|
| 2 |
+
{{ m.role }}: {{ m.content }}
|
| 3 |
+
{% endfor %}
|
| 4 |
+
assistant:
|