How do I make an AITool return both image and text?
static ? GetImageAndText()
{
string text = "...";
string base64Image = "....";
return ? // How do I return both the text and the image?
}
In SK, I have returned a ChatMessageContent, which contains ChatMessageContentItemCollection, that can contain TextContent and ImageContent.
How do I make an AITool return both image and text?
In SK, I have returned a ChatMessageContent, which contains
ChatMessageContentItemCollection, that can containTextContentandImageContent.