@pyxmate/memory 1.18.1 → 1.18.2
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/pyx-mem.mjs +3 -2
- package/package.json +1 -1
package/dist/cli/pyx-mem.mjs
CHANGED
|
@@ -1078,7 +1078,7 @@ function createProxyServer(client, version, uploadLocalFile) {
|
|
|
1078
1078
|
return server;
|
|
1079
1079
|
}
|
|
1080
1080
|
async function runMcpProxyServer(opts) {
|
|
1081
|
-
const version = opts.version ?? (true ? "1.18.
|
|
1081
|
+
const version = opts.version ?? (true ? "1.18.2" : "0.0.0-dev");
|
|
1082
1082
|
const read = await opts.readCredentials();
|
|
1083
1083
|
if (!read.ok) {
|
|
1084
1084
|
const text = read.result.content.map((c) => c.type === "text" ? c.text : "").join(" ").trim();
|
|
@@ -2082,6 +2082,7 @@ ${err.guidance}
|
|
|
2082
2082
|
// src/cli/commands/taxonomy.ts
|
|
2083
2083
|
import { z as z3 } from "zod";
|
|
2084
2084
|
var TAXONOMY_SCHEMA_VERSION = 1;
|
|
2085
|
+
var TAXONOMY_MAX_RETURNED_CATEGORIES = TAXONOMY_MAX_CATEGORIES + 1;
|
|
2085
2086
|
var taxonomyStateSchema = z3.object({
|
|
2086
2087
|
clusters: z3.array(
|
|
2087
2088
|
z3.object({
|
|
@@ -2103,7 +2104,7 @@ var taxonomyStateSchema = z3.object({
|
|
|
2103
2104
|
})
|
|
2104
2105
|
).max(TAXONOMY_MAX_TOP_ENTITIES)
|
|
2105
2106
|
})
|
|
2106
|
-
).max(
|
|
2107
|
+
).max(TAXONOMY_MAX_RETURNED_CATEGORIES),
|
|
2107
2108
|
totals: z3.object({
|
|
2108
2109
|
clusters: z3.number().int().nonnegative(),
|
|
2109
2110
|
unnamed: z3.number().int().nonnegative(),
|