Spaces:
Running
Running
File size: 798 Bytes
a1c5622 3ba9c0c a1c5622 9537aed d0a1b70 6b8f69a bfbf1a7 4af6326 ae074fc 4af6326 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import { Chat, Message } from '@prisma/client';
import { type Message as MessageAI } from 'ai';
export type ChatWithMessages = Chat & { messages: Message[] };
export type MessageUserInput = Pick<Message, 'prompt' | 'mediaUrl'>;
export type MessageAssistantResponse = Partial<
Pick<Message, 'response' | 'result'>
>;
export type MessageUI = Pick<MessageAI, 'role' | 'content' | 'id'>;
export interface SignedPayload {
id: string;
publicUrl: string;
signedUrl: string;
fields: Record<string, string>;
}
export type ResultPayload = {
logs: {
stderr: string[];
stdout: string[];
};
results: Array<{
png?: string;
mp4?: string;
text: string;
is_main_result: boolean;
}>;
error: {
name: string;
value: string;
traceback_raw: string[];
};
};
|