From 828d83094ba82ea694bf4fcf44871a20236f419c Mon Sep 17 00:00:00 2001 From: cosmic-snow <134004613+cosmic-snow@users.noreply.github.com> Date: Mon, 5 Aug 2024 01:44:01 +0200 Subject: [PATCH] docs: replace default model & link to wiki in CLI readme (#2719) Signed-off-by: cosmic-snow <134004613+cosmic-snow@users.noreply.github.com> --- gpt4all-bindings/cli/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gpt4all-bindings/cli/README.md b/gpt4all-bindings/cli/README.md index 228253cd..f0d1e57e 100644 --- a/gpt4all-bindings/cli/README.md +++ b/gpt4all-bindings/cli/README.md @@ -2,8 +2,7 @@ GPT4All on the command-line. -## Documentation - +More details on the [wiki](https://github.com/nomic-ai/gpt4all/wiki/Python-CLI). ## Quickstart @@ -34,11 +33,11 @@ python -m pip install --user --upgrade gpt4all typer # run the CLI python app.py repl ``` -By default, it will automatically download the `groovy` model to `.cache/gpt4all/` in your user -directory, if necessary. +By default, it will automatically download the `Mistral Instruct` model to `.cache/gpt4all/` in your +user directory, if necessary. If you have already saved a model beforehand, specify its path with the `-m`/`--model` argument, for example: ```shell -python app.py repl --model /home/user/my-gpt4all-models/gpt4all-13b-snoozy-q4_0.gguf +python app.py repl --model /home/user/my-gpt4all-models/mistral-7b-instruct-v0.1.Q4_0.gguf ```