@pyxmate/memory 0.19.1 → 0.20.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/index.d.ts CHANGED
@@ -356,11 +356,14 @@ declare const VectorProvider: {
356
356
  type VectorProvider = (typeof VectorProvider)[keyof typeof VectorProvider];
357
357
  declare const EmbeddingProviderName: {
358
358
  readonly STUB: "stub";
359
- /** @deprecated Vestigial — pyx-memory uses internal BGE-M3 embeddings. */
359
+ /** @deprecated Vestigial — pyx-memory uses internal EmbeddingGemma embeddings. */
360
360
  readonly ANTHROPIC: "anthropic";
361
- /** @deprecated Vestigial — pyx-memory uses internal BGE-M3 embeddings. */
361
+ /** @deprecated Vestigial — pyx-memory uses internal EmbeddingGemma embeddings. */
362
362
  readonly OPENAI: "openai";
363
+ /** In-process ONNX model (default: EmbeddingGemma-300M). */
363
364
  readonly LOCAL: "local";
365
+ /** Remote OpenAI-compatible embedding service (pyx-cloud shared, custom, etc.). */
366
+ readonly HTTP: "http";
364
367
  };
365
368
  type EmbeddingProviderName = (typeof EmbeddingProviderName)[keyof typeof EmbeddingProviderName];
366
369
  interface MemoryEntry {
package/dist/index.mjs CHANGED
@@ -40,11 +40,14 @@ var VectorProvider = {
40
40
  };
41
41
  var EmbeddingProviderName = {
42
42
  STUB: "stub",
43
- /** @deprecated Vestigial — pyx-memory uses internal BGE-M3 embeddings. */
43
+ /** @deprecated Vestigial — pyx-memory uses internal EmbeddingGemma embeddings. */
44
44
  ANTHROPIC: "anthropic",
45
- /** @deprecated Vestigial — pyx-memory uses internal BGE-M3 embeddings. */
45
+ /** @deprecated Vestigial — pyx-memory uses internal EmbeddingGemma embeddings. */
46
46
  OPENAI: "openai",
47
- LOCAL: "local"
47
+ /** In-process ONNX model (default: EmbeddingGemma-300M). */
48
+ LOCAL: "local",
49
+ /** Remote OpenAI-compatible embedding service (pyx-cloud shared, custom, etc.). */
50
+ HTTP: "http"
48
51
  };
49
52
  var StoreTarget = {
50
53
  SQLITE: "sqlite",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pyxmate/memory",
3
- "version": "0.19.1",
3
+ "version": "0.20.4",
4
4
  "type": "module",
5
5
  "description": "SDK for pyx-memory — Memory as a Service for AI agents",
6
6
  "license": "MIT",