File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ npx ipull <model-file-ul>
3636### Validate your setup by chatting with a model
3737To validate that your setup works, run the following command to chat with the model you downloaded:
3838```bash
39- npx run dev:build; node ./dist/cli/cli.js chat --model <path-to-model-file-on-your-computer>
39+ npm run dev:build; node ./dist/cli/cli.js chat --model <path-to-model-file-on-your-computer>
4040```
4141
4242Try telling the model `Hi there` and see how it reacts. Any response from the model means that your setup works.
4343If the response looks weird or doesn' t make sense, try using a different model.
4444
4545If the model doesn' t stop generating output, try using a different chat wrapper. For example:
4646```bash
47- npx run dev:build; node ./dist/cli/cli.js chat --wrapper llamaChat --model <path-to-model-file-on-your-computer>
47+ npm run dev:build; node ./dist/cli/cli.js chat --wrapper llamaChat --model <path-to-model-file-on-your-computer>
4848```
4949
5050> **Important:** Make sure you always run `npm run dev:build` before running the CLI to make sure that your code changes are reflected in the CLI.
You can’t perform that action at this time.
0 commit comments