push_gemini_text
Generate AI text responses using Gemini models and deliver them directly to LINE users as messages through the LINE Messaging API.
Instructions
Generate text with Gemini and push it to a LINE user as a text message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | Gemini model name, e.g., gemini-1.5-flash | gemini-1.5-flash |
prompt | Yes | Prompt to send to Gemini | |
userId | No | The user ID to receive a message. Defaults to DESTINATION_USER_ID. | U1a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": "gemini-1.5-flash",
"description": "Gemini model name, e.g., gemini-1.5-flash",
"type": "string"
},
"prompt": {
"description": "Prompt to send to Gemini",
"minLength": 1,
"type": "string"
},
"userId": {
"default": "U1a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p",
"description": "The user ID to receive a message. Defaults to DESTINATION_USER_ID.",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}