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>
36
36
### Validate your setup by chatting with a model
37
37
To validate that your setup works, run the following command to chat with the model you downloaded:
38
38
```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>
40
40
```
41
41
42
42
Try telling the model `Hi there` and see how it reacts. Any response from the model means that your setup works.
43
43
If the response looks weird or doesn' t make sense, try using a different model.
44
44
45
45
If the model doesn' t stop generating output, try using a different chat wrapper. For example:
46
46
```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>
48
48
```
49
49
50
50
> **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