contextual-agent-sdk
Version:
SDK for building AI agents with seamless voice-text context switching
11 lines • 429 B
TypeScript
import { StorageProvider, StorageConfig } from '../types/storage';
export type StorageType = 'redis' | 'mongodb' | 'memory';
export interface StorageFactoryConfig {
type: StorageType;
config?: StorageConfig;
}
export declare class StorageFactory {
static createProvider(factoryConfig?: StorageFactoryConfig): StorageProvider;
static createFromEnv(): StorageProvider;
}
//# sourceMappingURL=StorageFactory.d.ts.map