Update README.md

This commit is contained in:
Patrick von Platen 2024-05-22 10:32:05 +00:00 committed by system
parent abbb488323
commit 9a93e9095b
No known key found for this signature in database
GPG Key ID: 6A528E38E0733467

@ -31,6 +31,14 @@ mistral_models_path.mkdir(parents=True, exist_ok=True)
snapshot_download(repo_id="mistralai/Mistral-7B-Instruct-v0.3", allow_patterns=["params.json", "consolidated.safetensors", "tokenizer.model.v3"], cache_dir=mistral_models_path) snapshot_download(repo_id="mistralai/Mistral-7B-Instruct-v0.3", allow_patterns=["params.json", "consolidated.safetensors", "tokenizer.model.v3"], cache_dir=mistral_models_path)
``` ```
### Chat
After installing `mistral_inference`, a `mistral-chat` command should be available in your CLI. You can chat with the model using
```
mistral-chat $HOME/mistral_models/7B-Instruct-v0.3
```
### Instruct following ### Instruct following
```py ```py