exomind 0.4.0 → 0.4.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/dist/cli.js CHANGED
@@ -3119,7 +3119,7 @@ var {
3119
3119
  // package.json
3120
3120
  var package_default = {
3121
3121
  name: "exomind",
3122
- version: "0.4.0",
3122
+ version: "0.4.1",
3123
3123
  description: "ExoMind \u8DE8\u5E73\u53F0\u547D\u4EE4\u884C\u5BA2\u6237\u7AEF \u2014 \u901A\u8FC7 REST \u4E0E ExoMind \u77E5\u8BC6\u5E93\u4EA4\u4E92(ingest/query/search/review),\u66FF\u4EE3 Windows \u4E0D\u53EF\u7528\u7684 MCP \u5BA2\u6237\u7AEF\u3002",
3124
3124
  bin: {
3125
3125
  exomind: "dist/cli.js"
@@ -4064,7 +4064,7 @@ async function ingest(client, opts, args) {
4064
4064
  if (opts.title) body.title = opts.title;
4065
4065
  if (opts.tag && opts.tag.length) body.tags = opts.tag;
4066
4066
  hint("\u23F3 \u6444\u5165\u4E2D: \u670D\u52A1\u5668\u7528 LLM \u62BD\u53D6\u5B9E\u4F53/\u5173\u7CFB,\u957F\u5185\u5BB9\u53EF\u80FD 1-3 \u5206\u949F\u2026");
4067
- const result = await client.post("/ingest", body, { timeoutMs: opTimeout(3e5) });
4067
+ const result = await ingestWithRetry(client, body, opTimeout(3e5));
4068
4068
  if (fileAbs && fileRaw !== null) {
4069
4069
  const man = loadManifest();
4070
4070
  recordFile(man, fileAbs, fileRaw, opts.title || path5.basename(fileAbs));