( mediaType: string = 'image/png', image: string = 'base64data', )
| 47 | } |
| 48 | |
| 49 | function createImageBlock( |
| 50 | mediaType: string = 'image/png', |
| 51 | image: string = 'base64data', |
| 52 | ): ImageContentBlock { |
| 53 | return { |
| 54 | type: 'image', |
| 55 | mediaType, |
| 56 | image, |
| 57 | } as ImageContentBlock |
| 58 | } |
| 59 | |
| 60 | function createImplementorAgent( |
| 61 | agentId: string, |
no outgoing calls
no test coverage detected