From 9a93e9095bd4a736fce752ea5cde0e620345250c Mon Sep 17 00:00:00 2001 From: Patrick von Platen Date: Wed, 22 May 2024 10:32:05 +0000 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 19e3636..9cda059 100644 --- a/README.md +++ b/README.md @@ -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) ``` +### 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 ```py