(text, stringify = false)
| 16 | * @returns {Object} - Text content object |
| 17 | */ |
| 18 | export function createTextContent(text, stringify = false) { |
| 19 | return { |
| 20 | type: "text", |
| 21 | text: stringify ? JSON.stringify(text, null, 2) : text, |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * @param {string} data - Base64-encoded image data |
no test coverage detected