shabti 2.8.0 → 2.9.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 -2
- package/package.json +1 -1
- package/src/commands/config.js +45 -1
package/README.md
CHANGED
|
@@ -12,13 +12,24 @@ npm install -g shabti
|
|
|
12
12
|
|
|
13
13
|
### Prerequisites
|
|
14
14
|
|
|
15
|
-
Shabti requires a running Qdrant instance for vector storage
|
|
15
|
+
Shabti requires a running Qdrant instance for vector storage.
|
|
16
|
+
|
|
17
|
+
**Option 1: Docker**
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
20
|
docker run -d --name qdrant -p 6333:6333 -p 6334:6334 qdrant/qdrant
|
|
19
21
|
```
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
**Option 2: Native binary (no Docker)**
|
|
24
|
+
|
|
25
|
+
Download the binary for your platform from [Qdrant releases](https://github.com/qdrant/qdrant/releases) and run it directly.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Check for locally installed qdrant
|
|
29
|
+
shabti config setup --detect
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**Verify the connection:**
|
|
22
33
|
|
|
23
34
|
```bash
|
|
24
35
|
shabti config setup --check
|
package/package.json
CHANGED
package/src/commands/config.js
CHANGED
|
@@ -49,22 +49,66 @@ export function registerConfig(program) {
|
|
|
49
49
|
.command("setup")
|
|
50
50
|
.description("Show Qdrant setup instructions")
|
|
51
51
|
.option("--check", "Test connection to Qdrant")
|
|
52
|
+
.option("--detect", "Detect locally installed qdrant binary")
|
|
52
53
|
.action(async (opts) => {
|
|
53
54
|
const config = loadConfig();
|
|
54
55
|
heading("Qdrant Setup");
|
|
55
56
|
console.log();
|
|
56
57
|
console.log(" shabti requires a running Qdrant instance for vector storage.");
|
|
57
58
|
console.log();
|
|
58
|
-
|
|
59
|
+
|
|
60
|
+
// Option 1: Docker
|
|
61
|
+
console.log(chalk.cyan(" Option 1: Docker"));
|
|
59
62
|
console.log();
|
|
60
63
|
console.log(` docker run -d --name qdrant -p 6333:6333 -p 6334:6334 qdrant/qdrant`);
|
|
61
64
|
console.log();
|
|
65
|
+
|
|
66
|
+
// Option 2: Native binary
|
|
67
|
+
console.log(chalk.cyan(" Option 2: Native binary (no Docker required)"));
|
|
68
|
+
console.log();
|
|
69
|
+
console.log(
|
|
70
|
+
` Download from: ${chalk.underline("https://github.com/qdrant/qdrant/releases")}`,
|
|
71
|
+
);
|
|
72
|
+
console.log();
|
|
73
|
+
const plat = process.platform;
|
|
74
|
+
if (plat === "linux") {
|
|
75
|
+
console.log(" Linux:");
|
|
76
|
+
console.log(
|
|
77
|
+
" wget https://github.com/qdrant/qdrant/releases/latest/download/qdrant-x86_64-unknown-linux-gnu.tar.gz",
|
|
78
|
+
);
|
|
79
|
+
console.log(" tar xzf qdrant-x86_64-unknown-linux-gnu.tar.gz");
|
|
80
|
+
console.log(" ./qdrant");
|
|
81
|
+
} else if (plat === "darwin") {
|
|
82
|
+
console.log(" macOS:");
|
|
83
|
+
console.log(" Download the macOS binary from the releases page,");
|
|
84
|
+
console.log(" or build from source: cargo install qdrant");
|
|
85
|
+
} else if (plat === "win32") {
|
|
86
|
+
console.log(" Windows:");
|
|
87
|
+
console.log(" Download qdrant.exe from the releases page and run it.");
|
|
88
|
+
}
|
|
89
|
+
console.log();
|
|
90
|
+
|
|
62
91
|
console.log(` Current Qdrant URL: ${chalk.yellow(config.qdrant_url)}`);
|
|
63
92
|
console.log();
|
|
64
93
|
console.log(" To change the URL:");
|
|
65
94
|
console.log(` shabti config set qdrant_url ${chalk.dim("<url>")}`);
|
|
66
95
|
console.log();
|
|
67
96
|
|
|
97
|
+
if (opts.detect) {
|
|
98
|
+
const { execFileSync } = await import("node:child_process");
|
|
99
|
+
const cmd = plat === "win32" ? "where" : "which";
|
|
100
|
+
try {
|
|
101
|
+
const result = execFileSync(cmd, ["qdrant"], {
|
|
102
|
+
encoding: "utf8",
|
|
103
|
+
timeout: 5000,
|
|
104
|
+
}).trim();
|
|
105
|
+
success(`Qdrant binary found at: ${result}`);
|
|
106
|
+
} catch (_) {
|
|
107
|
+
console.log(chalk.yellow(" Qdrant binary not found in PATH."));
|
|
108
|
+
console.log(" Download it from https://github.com/qdrant/qdrant/releases");
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
68
112
|
if (opts.check) {
|
|
69
113
|
const restUrl = config.qdrant_url.replace(":6334", ":6333");
|
|
70
114
|
try {
|