Documentation for the Bytebot Task UI
http://localhost:9992
interface Message { id: string; content: MessageContentBlock[]; role: Role; // "USER" or "ASSISTANT" createdAt?: string; } interface MessageContentBlock { type: string; [key: string]: any; } interface TextContentBlock extends MessageContentBlock { type: "text"; text: string; } interface ImageContentBlock extends MessageContentBlock { type: "image"; source: { type: "base64"; media_type: string; data: string; }; }