very good documentation

This commit is contained in:
Patrick_Pluto 2024-09-30 09:35:58 +02:00
parent b3c03149fe
commit cb6298476a
5 changed files with 40 additions and 19 deletions

View file

@ -0,0 +1,20 @@
import { Settings } from 'electron'
import React from 'react'
type Message = {
role: string
content: string
}
type Chat = {
name: string
messages: Message[]
}
type Data = {
chats: Chat[]
settings: Settings[]
}