@batonfx/memory 0.4.0 → 0.4.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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # `@batonfx/memory`
2
+
3
+ Non-durable memory implementations for Baton agents.
4
+
5
+ See the [Baton documentation](https://github.com/In-Time-Tec/batonfx#readme) for installation, examples, and API guidance.
@@ -0,0 +1,14 @@
1
+ import { Layer } from "effect";
2
+ import { EmbeddingModel } from "effect/unstable/ai";
3
+ import { Memory } from "@batonfx/core";
4
+ import { VectorStore } from "./vector-store.js";
5
+ export * as SemanticRecall from "./semantic-recall.js";
6
+ export * as VectorStore from "./vector-store.js";
7
+ export * as WorkingMemory from "./working-memory.js";
8
+ /** @experimental */
9
+ export interface CombinedOptions {
10
+ readonly working?: import("./working-memory.js").Options;
11
+ readonly semantic?: import("./semantic-recall.js").Options;
12
+ }
13
+ /** @experimental */
14
+ export declare const combinedLayer: (options?: CombinedOptions) => Layer.Layer<Memory.Memory, never, VectorStore | EmbeddingModel.EmbeddingModel>;