*/
export function resolvePromptToContentBlocks(
attachments?: readonly MessageAttachment[],
): Anthropic.ContentBlockParam[] {
const blocks: Anthropic.ContentBlockParam[] = [{ type: 'text', text: prompt }];
if (!attachments?.length) {
return blocks;
}