pi-llama-cpp 0.1.1 → 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 +7 -1
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -13,7 +13,13 @@ A [Pi Coding Agent](https://pi.dev/) extension that integrates with a running [l
|
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
16
|
-
This package is a Pi extension. Install it
|
|
16
|
+
This package is a Pi extension. Install it with
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pi install npm:pi-llama-cpp
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
or
|
|
17
23
|
|
|
18
24
|
```bash
|
|
19
25
|
pi install https://github.com/gsanhueza/pi-llama-cpp
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-llama-cpp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Pi extension for llama.cpp integration. Supports both router and single modes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi",
|
|
@@ -8,8 +8,15 @@
|
|
|
8
8
|
"pi-extension",
|
|
9
9
|
"llama-cpp"
|
|
10
10
|
],
|
|
11
|
-
"
|
|
12
|
-
|
|
11
|
+
"author": "Gabriel Sanhueza",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/gsanhueza/pi-llama-cpp.git"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/gsanhueza/pi-llama-cpp#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/gsanhueza/pi-llama-cpp/issues"
|
|
13
20
|
},
|
|
14
21
|
"pi": {
|
|
15
22
|
"extensions": [
|