interstellar_ai/app/backend/ProcessMemory.tsx

14 lines
121 B
TypeScript
Raw Normal View History

2024-09-19 13:02:56 +02:00
import React from 'react'
type Chat = {
name:string
messages:string[]
}
type History = {
chats:Chat[]
}