ManimCat-show / src /studio-agent /persistence /studio-persistence.ts
Bin29's picture
Sync from main: 68df783 feat: support multimodal studio reference images
d47b053
import type {
StudioMessageStore,
StudioPartStore,
StudioRunStore,
StudioSessionEventStore,
StudioSessionStore,
StudioTaskStore,
StudioWorkResultStore,
StudioWorkStore,
} from '../domain/types'
export interface StudioPersistence {
sessionStore: StudioSessionStore
messageStore: StudioMessageStore
partStore: StudioPartStore
runStore: StudioRunStore
taskStore: StudioTaskStore
workStore: StudioWorkStore
workResultStore: StudioWorkResultStore
sessionEventStore: StudioSessionEventStore
}