@pyxmate/memory 1.17.2 → 1.17.4
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
CHANGED
|
@@ -835,7 +835,7 @@ function createProxyServer(client, version, uploadLocalFile) {
|
|
|
835
835
|
return server;
|
|
836
836
|
}
|
|
837
837
|
async function runMcpProxyServer(opts) {
|
|
838
|
-
const version = opts.version ?? (true ? "1.17.
|
|
838
|
+
const version = opts.version ?? (true ? "1.17.4" : "0.0.0-dev");
|
|
839
839
|
const read = await opts.readCredentials();
|
|
840
840
|
if (!read.ok) {
|
|
841
841
|
const text = read.result.content.map((c) => c.type === "text" ? c.text : "").join(" ").trim();
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const DATA_PLANE_CONTRACT_VERSION: "pyx-data-plane-contract-v1";
|
|
2
2
|
declare const DATA_PLANE_CATALOG_VERSION: "maas-request-v1";
|
|
3
3
|
declare const DATA_PLANE_MANIFEST_VERSION: "pyx-data-plane-manifest-v1";
|
|
4
|
+
declare const DATA_PLANE_SEARCH_EMBEDDING_CONTRACT: "single_precomputed_query_v1";
|
|
4
5
|
declare const DATA_PLANE_STEP_INPUT_FRAME: "pyx-data-plane-step-input-v1\0";
|
|
5
6
|
declare const DATA_PLANE_MANIFEST_FRAME: "pyx-data-plane-manifest-v1\0";
|
|
6
7
|
declare const DATA_PLANE_HTTP_RESPONSE_FRAME: "pyx-data-plane-http-response-v1\0";
|
|
@@ -231,4 +232,4 @@ declare function hashDataPlaneManifestV1(value: unknown): {
|
|
|
231
232
|
declare function hashDataPlaneHttpResponseV1(statusCode: number, contentType: string, body: Uint8Array): string;
|
|
232
233
|
declare function compileDataPlaneRequest(request: CompileDataPlaneRequest): CompileDataPlaneResult;
|
|
233
234
|
|
|
234
|
-
export { type CanonicalDataPlaneObject, type CanonicalDataPlaneValue, type CompileContext, type CompileDataPlaneRequest, type CompileDataPlaneResult, type CompiledDataPlaneExecutionPlan, DATA_PLANE_CATALOG_VERSION, DATA_PLANE_COMPILER_LIMITS, DATA_PLANE_CONTRACT_VERSION, DATA_PLANE_HTTP_RESPONSE_FRAME, DATA_PLANE_MANIFEST_FRAME, DATA_PLANE_MANIFEST_VERSION, DATA_PLANE_OPERATION_COVERAGE, DATA_PLANE_STEP_INPUT_FRAME, type DataPlaneCatalogOperation, type DataPlaneUnsupportedReasonCode, type SupportedDataPlaneCatalogOperation, canonicalDataPlaneJson, compileDataPlaneRequest, hashDataPlaneHttpResponseV1, hashDataPlaneManifestV1, hashDataPlaneStepInputV1 };
|
|
235
|
+
export { type CanonicalDataPlaneObject, type CanonicalDataPlaneValue, type CompileContext, type CompileDataPlaneRequest, type CompileDataPlaneResult, type CompiledDataPlaneExecutionPlan, DATA_PLANE_CATALOG_VERSION, DATA_PLANE_COMPILER_LIMITS, DATA_PLANE_CONTRACT_VERSION, DATA_PLANE_HTTP_RESPONSE_FRAME, DATA_PLANE_MANIFEST_FRAME, DATA_PLANE_MANIFEST_VERSION, DATA_PLANE_OPERATION_COVERAGE, DATA_PLANE_SEARCH_EMBEDDING_CONTRACT, DATA_PLANE_STEP_INPUT_FRAME, type DataPlaneCatalogOperation, type DataPlaneUnsupportedReasonCode, type SupportedDataPlaneCatalogOperation, canonicalDataPlaneJson, compileDataPlaneRequest, hashDataPlaneHttpResponseV1, hashDataPlaneManifestV1, hashDataPlaneStepInputV1 };
|
|
@@ -8,6 +8,7 @@ import { createHash } from "crypto";
|
|
|
8
8
|
var DATA_PLANE_CONTRACT_VERSION = "pyx-data-plane-contract-v1";
|
|
9
9
|
var DATA_PLANE_CATALOG_VERSION = "maas-request-v1";
|
|
10
10
|
var DATA_PLANE_MANIFEST_VERSION = "pyx-data-plane-manifest-v1";
|
|
11
|
+
var DATA_PLANE_SEARCH_EMBEDDING_CONTRACT = "single_precomputed_query_v1";
|
|
11
12
|
var DATA_PLANE_STEP_INPUT_FRAME = "pyx-data-plane-step-input-v1\0";
|
|
12
13
|
var DATA_PLANE_MANIFEST_FRAME = "pyx-data-plane-manifest-v1\0";
|
|
13
14
|
var DATA_PLANE_HTTP_RESPONSE_FRAME = "pyx-data-plane-http-response-v1\0";
|
|
@@ -1261,6 +1262,7 @@ export {
|
|
|
1261
1262
|
DATA_PLANE_MANIFEST_FRAME,
|
|
1262
1263
|
DATA_PLANE_MANIFEST_VERSION,
|
|
1263
1264
|
DATA_PLANE_OPERATION_COVERAGE,
|
|
1265
|
+
DATA_PLANE_SEARCH_EMBEDDING_CONTRACT,
|
|
1264
1266
|
DATA_PLANE_STEP_INPUT_FRAME,
|
|
1265
1267
|
canonicalDataPlaneJson,
|
|
1266
1268
|
compileDataPlaneRequest,
|