@fasaled/sailkari 0.1.0 → 0.1.2
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 +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,22 +18,31 @@ The npm package includes the compatible llama.cpp native addon and libraries for
|
|
|
18
18
|
platform. npm picks the matching prebuilt package for your OS and architecture, so no
|
|
19
19
|
compiler setup is required for supported platforms.
|
|
20
20
|
|
|
21
|
+
Install from npm directly:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install --save-dev @fasaled/sailkari
|
|
25
|
+
npx @fasaled/sailkari
|
|
26
|
+
```
|
|
27
|
+
|
|
21
28
|
Sailkari works anywhere the native addon runs. It stores classifications in
|
|
22
29
|
`.sailkari/results.json` inside the evaluated folder, making repeated runs portable across
|
|
23
30
|
macOS, Linux, and Windows.
|
|
24
31
|
|
|
25
32
|
## Install and run
|
|
26
33
|
|
|
34
|
+
The package is published as `@fasaled/sailkari`, while the executable remains `sailkari`.
|
|
35
|
+
|
|
27
36
|
Run the full-screen terminal interface without a global installation:
|
|
28
37
|
|
|
29
38
|
```bash
|
|
30
|
-
npx sailkari
|
|
39
|
+
npx @fasaled/sailkari
|
|
31
40
|
```
|
|
32
41
|
|
|
33
42
|
Or install globally:
|
|
34
43
|
|
|
35
44
|
```bash
|
|
36
|
-
npm install --global sailkari
|
|
45
|
+
npm install --global @fasaled/sailkari
|
|
37
46
|
sailkari help
|
|
38
47
|
```
|
|
39
48
|
|