vision-agent / lib /db /types.ts
MingruiZhang's picture
feat: Setup postgres and prisma (#50)
5ec491a unverified
raw
history blame
199 Bytes
import { Chat, Message } from '@prisma/client';
export type ChatWithMessages = Chat & { messages: Message[] };
export type MessageRaw = {
role: Message['role'];
content: Message['content'];
};