From 9e5421e7a87055a6fd9d97524b0f8dd8271a07a2 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 24 Oct 2023 12:39:04 -0700 Subject: [PATCH] Update llm-gpt4all examples for latest release !stable-docs Refs https://github.com/simonw/llm-gpt4all/issues/16 --- docs/index.md | 2 +- docs/other-models.md | 2 +- docs/plugins/installing-plugins.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/index.md b/docs/index.md index bbe6404..c443013 100644 --- a/docs/index.md +++ b/docs/index.md @@ -50,7 +50,7 @@ Or you can {ref}`install a plugin ` and use models that can llm install llm-gpt4all # Download and run a prompt against the Orca Mini 7B model -llm -m orca-mini-7b 'What is the capital of France?' +llm -m orca-mini-3b-gguf2-q4_0 'What is the capital of France?' ``` To start {ref}`an interactive chat ` with a model, use `llm chat`: ```bash diff --git a/docs/other-models.md b/docs/other-models.md index a0f1ff6..40e53c9 100644 --- a/docs/other-models.md +++ b/docs/other-models.md @@ -16,7 +16,7 @@ Run `llm models` to see the expanded list of available models. To run a prompt through one of the models from GPT4All specify it using `-m/--model`: ```bash -llm -m orca-mini-7b 'What is the capital of France?' +llm -m orca-mini-3b-gguf2-q4_0 'What is the capital of France?' ``` The model will be downloaded and cached the first time you use it. diff --git a/docs/plugins/installing-plugins.md b/docs/plugins/installing-plugins.md index ab8ae30..f2d79cd 100644 --- a/docs/plugins/installing-plugins.md +++ b/docs/plugins/installing-plugins.md @@ -25,7 +25,7 @@ llm models --options ``` To run a prompt against a newly installed model, pass its name as the `-m/--model` option: ```bash -llm -m orca-mini-7b 'What is the capital of France?' +llm -m orca-mini-3b-gguf2-q4_0 'What is the capital of France?' ``` ## Listing installed plugins