@mastra/core
Version:
The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.
12 lines • 842 B
TypeScript
import type { StorageColumn } from './types';
export declare const TABLE_WORKFLOW_SNAPSHOT = "mastra_workflow_snapshot";
export declare const TABLE_EVALS = "mastra_evals";
export declare const TABLE_MESSAGES = "mastra_messages";
export declare const TABLE_THREADS = "mastra_threads";
export declare const TABLE_TRACES = "mastra_traces";
export declare const TABLE_RESOURCES = "mastra_resources";
export declare const TABLE_SCORERS = "mastra_scorers";
export type TABLE_NAMES = typeof TABLE_WORKFLOW_SNAPSHOT | typeof TABLE_EVALS | typeof TABLE_MESSAGES | typeof TABLE_THREADS | typeof TABLE_TRACES | typeof TABLE_RESOURCES | typeof TABLE_SCORERS;
export declare const SCORERS_SCHEMA: Record<string, StorageColumn>;
export declare const TABLE_SCHEMAS: Record<TABLE_NAMES, Record<string, StorageColumn>>;
//# sourceMappingURL=constants.d.ts.map