chatbot-template/lib/types.ts

10 lines
191 B
TypeScript
Raw Normal View History

2023-06-02 15:15:35 -04:00
import { type Message } from "ai-connector";
export interface Chat extends Record<string, any> {
id: string;
title: string;
createdAt: Date;
userId: string;
messages: Message[];
}