interstellar_ai/app/backend/ProcessMemory.ts

20 lines
220 B
TypeScript
Raw Normal View History

2024-10-07 08:57:34 +02:00
/* import { Settings } from 'electron'
2024-09-30 09:35:58 +02:00
type Message = {
role: string
content: string
}
type Chat = {
name: string
messages: Message[]
}
type Data = {
chats: Chat[]
settings: Settings[]
2024-10-07 08:57:34 +02:00
} */
2024-09-30 09:35:58 +02:00