Instructions to use m-i/Mistral-7B-Instruct-Aya-101-mlx-6Bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use m-i/Mistral-7B-Instruct-Aya-101-mlx-6Bit with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir Mistral-7B-Instruct-Aya-101-mlx-6Bit m-i/Mistral-7B-Instruct-Aya-101-mlx-6Bit
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
| {{ bos_token }}{% for message in messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if message['role'] == 'user' %}{{ '[INST] ' + message['content'] + ' [/INST]' }}{% elif message['role'] == 'assistant' %}{{ message['content'] + eos_token}}{% else %}{{ raise_exception('Only user and assistant roles are supported!') }}{% endif %}{% endfor %} |