Spaces:
Sleeping
Sleeping
feat: revalidate path / remove create chat api (use server action) / code block style (#53)
71679ee
unverified
import { type Message } from 'ai'; | |
export type MessageBase = { | |
role: Message['role']; | |
content: string; | |
id: string; | |
}; | |
export interface SignedPayload { | |
id: string; | |
publicUrl: string; | |
signedUrl: string; | |
fields: Record<string, string>; | |
} | |