Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jcode-mimir",
"version": "0.4.5",
"version": "0.4.6",
"private": true,
"description": "Monorepo for the Mimir open-source local RAG packages.",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir-tts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcode.labs/mimir-tts",
"version": "0.4.5",
"version": "0.4.6",
"description": "Plug-and-play Edge-quality and offline text-to-speech for Mimir audio summaries.",
"type": "module",
"license": "MIT",
Expand Down
3 changes: 3 additions & 0 deletions packages/mimir/dist/cli.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mimir/dist/cli.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/mimir/dist/version.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export declare const VERSION = "0.4.5";
export declare const VERSION = "0.4.6";
//# sourceMappingURL=version.d.ts.map
2 changes: 1 addition & 1 deletion packages/mimir/dist/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/mimir/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcode.labs/mimir",
"version": "0.4.5",
"version": "0.4.6",
"description": "Mimir: open-source sovereign local RAG for confidential datasets and AI agents.",
"type": "module",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/mimir/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,8 @@ function printSetup(result: Awaited<ReturnType<typeof setupProject>>, title: str
console.log(
` - ingested indexedFiles=${result.ingested.indexedFiles} chunks=${result.ingested.chunks} errors=${result.ingested.errors.length}`,
)
} else if (result.doctor.ready) {
console.log(` - already ready chunks=${result.doctor.chunksIndexed}`)
} else {
console.log(" - skipped; add supported files or run doctor --fix when ready")
}
Expand Down
2 changes: 1 addition & 1 deletion packages/mimir/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.4.5"
export const VERSION = "0.4.6"
7 changes: 7 additions & 0 deletions scripts/smoke.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ try {
)
assertIncludes(fixedDoctor.stdout, "errors=0", "doctor --fix should surface ingest errors")

const readyDoctorFix = await runKb(["doctor", "--fix"], tempRoot)
assertIncludes(
readyDoctorFix.stdout,
"already ready chunks=",
"doctor --fix should report an already-ready index clearly",
)

const search = await runKb(["search", "French tax residency", "--top-k", "1"], tempRoot)
assertIncludes(search.stdout, "tax.md", "search should retrieve the tax document")
assertIncludes(search.stdout, "French tax residency", "search should return indexed content")
Expand Down
Loading