pi-multimodal-proxy 1.5.0-beta.1
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/CHANGELOG.md +66 -0
- package/PRD-Implementation-Status.md +170 -0
- package/PRD.md +599 -0
- package/README.md +219 -0
- package/SECURITY-REVIEW.md +127 -0
- package/extensions/__tests__/integration.test.ts +386 -0
- package/extensions/__tests__/internal.test.ts +1881 -0
- package/extensions/internal.ts +1731 -0
- package/extensions/vision-proxy.ts +2076 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-multimodal-proxy",
|
|
3
|
+
"version": "1.5.0-beta.1",
|
|
4
|
+
"description": "Automatic image, video and audio description for any model in Pi. Routes media to a multimodal model and injects descriptions into context.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package"
|
|
7
|
+
],
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/pungggi/pi-vision-proxy.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/pungggi/pi-vision-proxy#readme",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"test": "node --experimental-strip-types --no-warnings --test extensions/__tests__/*.test.ts"
|
|
17
|
+
},
|
|
18
|
+
"pi": {
|
|
19
|
+
"extensions": [
|
|
20
|
+
"./extensions/vision-proxy.ts"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"image-size": "^2.0.2",
|
|
25
|
+
"imagescript": "^1.3.1",
|
|
26
|
+
"imghash": "^1.1.4"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"@earendil-works/pi-ai": ">=0.74.0",
|
|
30
|
+
"@earendil-works/pi-coding-agent": ">=0.74.0",
|
|
31
|
+
"typebox": "*"
|
|
32
|
+
}
|
|
33
|
+
}
|