chatbot-template/lib/types.ts

10 lines
185 B
TypeScript
Raw Normal View History

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