File size: 251 Bytes
3c9f03f
3ba9c0c
d0a1b70
a86b547
d0a1b70
a86b547
d0a1b70
 
6b8f69a
 
 
 
 
bfbf1a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>;
}