interstellar_ai/app/ProcessMemory.tsx

13 lines
121 B
TypeScript

import React from 'react'
type Chat = {
name:string
messages:string[]
}
type History = {
chats:Chat[]
}