Skip to content

Commit 9c8c42b

Browse files
authored
docs: fix typo in CONTRIBUTING.md (#48)
1 parent 1e617cd commit 9c8c42b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ npx ipull <model-file-ul>
3636
### Validate your setup by chatting with a model
3737
To 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
4242
Try telling the model `Hi there` and see how it reacts. Any response from the model means that your setup works.
4343
If the response looks weird or doesn't make sense, try using a different model.
4444

4545
If 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.

0 commit comments

Comments
 (0)