UNPKG

@mastra/core

Version:

The core foundation of the Mastra framework, providing essential components and interfaces for building AI-powered applications.

15 lines (12 loc) 461 B
'use strict'; // src/storage/constants.ts var TABLE_WORKFLOW_SNAPSHOT = "mastra_workflow_snapshot"; var TABLE_EVALS = "mastra_evals"; var TABLE_MESSAGES = "mastra_messages"; var TABLE_THREADS = "mastra_threads"; var TABLE_TRACES = "mastra_traces"; exports.TABLE_EVALS = TABLE_EVALS; exports.TABLE_MESSAGES = TABLE_MESSAGES; exports.TABLE_THREADS = TABLE_THREADS; exports.TABLE_TRACES = TABLE_TRACES; exports.TABLE_WORKFLOW_SNAPSHOT = TABLE_WORKFLOW_SNAPSHOT;