1export const userMsgImg = ({imageUrlStr}: {imageUrlStr: string}) => {2 return {3 role: 'user',4 content: [5 {6 type: 'image_url', 7 image_url: {8 url: imageUrlStr,9 }10 }11 ],12 }13}