send_image_to_meeting
Send an image to a Google Meet meeting via a bot, enabling visual communication by providing the bot ID and HTTPS image URL.
Instructions
Send an image to the meeting through the bot (Google Meet only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bot_id | Yes | ID of the bot that should display the image | |
image_url | Yes | HTTPS URL of the image to display |
Input Schema (JSON Schema)
{
"properties": {
"bot_id": {
"description": "ID of the bot that should display the image",
"type": "string"
},
"image_url": {
"description": "HTTPS URL of the image to display",
"type": "string"
}
},
"required": [
"bot_id",
"image_url"
],
"type": "object"
}