@tobilu/qmd 1.0.5 → 1.0.6
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 +11 -0
- package/dist/qmd.js +12 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.0.6] - 2026-02-16
|
|
6
|
+
|
|
7
|
+
### Changes
|
|
8
|
+
|
|
9
|
+
- CLI: `qmd status` now shows models with full HuggingFace links instead of
|
|
10
|
+
static names in `--help`. Model info is derived from the actual configured
|
|
11
|
+
URIs so it stays accurate if models change.
|
|
12
|
+
- Release tooling: pre-push hook handles non-interactive shells (CI, editors)
|
|
13
|
+
gracefully — warnings auto-proceed instead of hanging on a tty prompt.
|
|
14
|
+
Annotated tags now resolve correctly for CI checks.
|
|
15
|
+
|
|
5
16
|
## [1.0.5] - 2026-02-16
|
|
6
17
|
|
|
7
18
|
The npm package now ships compiled JavaScript instead of raw TypeScript,
|
package/dist/qmd.js
CHANGED
|
@@ -256,6 +256,18 @@ async function showStatus() {
|
|
|
256
256
|
else {
|
|
257
257
|
console.log(`\n${c.dim}No collections. Run 'qmd collection add .' to index markdown files.${c.reset}`);
|
|
258
258
|
}
|
|
259
|
+
// Models
|
|
260
|
+
{
|
|
261
|
+
// hf:org/repo/file.gguf → https://huggingface.co/org/repo
|
|
262
|
+
const hfLink = (uri) => {
|
|
263
|
+
const match = uri.match(/^hf:([^/]+\/[^/]+)\//);
|
|
264
|
+
return match ? `https://huggingface.co/${match[1]}` : uri;
|
|
265
|
+
};
|
|
266
|
+
console.log(`\n${c.bold}Models${c.reset}`);
|
|
267
|
+
console.log(` Embedding: ${hfLink(DEFAULT_EMBED_MODEL_URI)}`);
|
|
268
|
+
console.log(` Reranking: ${hfLink(DEFAULT_RERANK_MODEL_URI)}`);
|
|
269
|
+
console.log(` Generation: ${hfLink(DEFAULT_GENERATE_MODEL_URI)}`);
|
|
270
|
+
}
|
|
259
271
|
// Device / GPU info
|
|
260
272
|
try {
|
|
261
273
|
const llm = getDefaultLlamaCpp();
|
|
@@ -1877,11 +1889,6 @@ function showHelp() {
|
|
|
1877
1889
|
console.log(" --max-bytes <num> - Skip files larger than N bytes (default: 10240)");
|
|
1878
1890
|
console.log(" --json/--csv/--md/--xml/--files - Output format (same as search)");
|
|
1879
1891
|
console.log("");
|
|
1880
|
-
console.log("Models (auto-downloaded from HuggingFace):");
|
|
1881
|
-
console.log(" Embedding: embeddinggemma-300M-Q8_0");
|
|
1882
|
-
console.log(" Reranking: qwen3-reranker-0.6b-q8_0");
|
|
1883
|
-
console.log(" Generation: Qwen3-0.6B-Q8_0");
|
|
1884
|
-
console.log("");
|
|
1885
1892
|
console.log(`Index: ${getDbPath()}`);
|
|
1886
1893
|
}
|
|
1887
1894
|
async function showVersion() {
|