@aikyroon/rag-local 1.0.0
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 +13 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +10 -0
- package/dist/cli.js.map +1 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @aikyroon/rag-local
|
|
2
|
+
|
|
3
|
+
Installs the **Kyroon Local AI Gateway** (gRPC-local + Ollama + Qdrant) via
|
|
4
|
+
Docker Compose — the local RAG backend for your workspace.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm install -g @aikyroon/rag-local
|
|
8
|
+
kyroon-rag-local install --api-key LK_xxx --workspace-id <uuid>
|
|
9
|
+
kyroon-rag-local install --api-key LK_xxx --workspace-id <uuid> --no-gpu --grpc-port 59090
|
|
10
|
+
kyroon-rag-local uninstall
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Requires Docker. Powered by `@aikyroon/installer-core`.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":""}
|
package/dist/cli.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { runCli } from '@aikyroon/installer-core';
|
|
3
|
+
runCli({
|
|
4
|
+
bin: 'kyroon-rag-local',
|
|
5
|
+
productName: 'Kyroon Local AI Gateway',
|
|
6
|
+
cliVersion: '1.0.0',
|
|
7
|
+
description: 'Installs the Kyroon Local AI Gateway (gRPC-local + Ollama + Qdrant) via Docker Compose.',
|
|
8
|
+
kind: 'rag-local',
|
|
9
|
+
});
|
|
10
|
+
//# sourceMappingURL=cli.js.map
|
package/dist/cli.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,MAAM,EAAE,MAAM,0BAA0B,CAAC;AAElD,MAAM,CAAC;IACL,GAAG,EAAE,kBAAkB;IACvB,WAAW,EAAE,yBAAyB;IACtC,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,yFAAyF;IACtG,IAAI,EAAE,WAAW;CAClB,CAAC,CAAC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aikyroon/rag-local",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Kyroon Local AI Gateway installer — brings up gRPC-local + Ollama + Qdrant via Docker.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"kyroon-rag-local": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=22"
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@aikyroon/installer-core": "^1.0.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/node": "^22.9.0",
|
|
21
|
+
"typescript": "^5.6.3"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"keywords": ["kyroon", "rag", "ollama", "qdrant", "installer", "cli"],
|
|
27
|
+
"author": "Kyroon",
|
|
28
|
+
"license": "MIT"
|
|
29
|
+
}
|