(
message: string,
imageMap?: Map<string, Buffer>,
)
| 657 | }; |
| 658 | |
| 659 | const processQueuedMessage = async ( |
| 660 | message: string, |
| 661 | imageMap?: Map<string, Buffer>, |
| 662 | ) => { |
| 663 | // For queued messages, we can reuse the core message processing logic |
| 664 | // by calling the internal processing function directly |
| 665 | await processMessage(message, imageMap, true); |
| 666 | }; |
| 667 | |
| 668 | const handleUserMessage = async ( |
| 669 | message: string, |
no test coverage detected