@breadboard-ai/data-store
Advanced tools
Comparing version
@@ -6,5 +6,6 @@ /** | ||
*/ | ||
import { type RunStore, type DataStore } from "@google-labs/breadboard"; | ||
import { type RunStore, type DataStore, PersistentBackend, EphemeralBlobStore } from "@google-labs/breadboard"; | ||
export declare function getDataStore(): DataStore; | ||
export declare function createFileSystemBackend(store: EphemeralBlobStore): PersistentBackend; | ||
export declare function getRunStore(useInMemoryStore?: boolean): RunStore; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -8,2 +8,3 @@ /** | ||
import { IDBRunStore } from "./run/idb-run-store.js"; | ||
import { IDBBackend } from "./file-system/idb-backend.js"; | ||
// TODO: Allow for other data stores. | ||
@@ -13,2 +14,5 @@ export function getDataStore() { | ||
} | ||
export function createFileSystemBackend(store) { | ||
return new IDBBackend(store); | ||
} | ||
export function getRunStore(useInMemoryStore = true) { | ||
@@ -15,0 +19,0 @@ if (useInMemoryStore) { |
{ | ||
"name": "@breadboard-ai/data-store", | ||
"version": "0.2.6", | ||
"version": "0.3.0", | ||
"description": "A data store implementation to support Breadboard", | ||
@@ -52,2 +52,5 @@ "main": "./dist/src/index.js", | ||
}, | ||
"dependencies": [ | ||
"build:tsc" | ||
], | ||
"files": [ | ||
@@ -155,6 +158,6 @@ "src/**/*.ts", | ||
"dependencies": { | ||
"@breadboard-ai/types": "0.3.0", | ||
"@google-labs/breadboard": "^0.30.0", | ||
"@breadboard-ai/types": "0.4.0", | ||
"@google-labs/breadboard": "^0.31.0", | ||
"idb": "^8.0.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
51146
122.92%17
30.77%661
136.07%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated