lwazi 1.7.2 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,16 @@ AI assistant for Laravel applications.
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install lwazi
|
|
8
|
+
npm install lwazi --legacy-peer-deps
|
|
9
9
|
npx lwazi install
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
+
## Uninstall
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm uninstall lwazi --legacy-peer-deps
|
|
16
|
+
```
|
|
17
|
+
|
|
12
18
|
## Requirements
|
|
13
19
|
|
|
14
20
|
- Laravel 10+
|
|
@@ -57,6 +63,9 @@ Edit `config/lwazi.php` to change:
|
|
|
57
63
|
**Model not found**
|
|
58
64
|
- Run `ollama pull llama3.2:1b`
|
|
59
65
|
|
|
66
|
+
**npm install/uninstall errors**
|
|
67
|
+
- Use `--legacy-peer-deps` flag
|
|
68
|
+
|
|
60
69
|
## License
|
|
61
70
|
|
|
62
71
|
MIT
|