generate_text
Generate text content using Google's Gemini Pro AI model by providing a prompt. This tool creates written responses for various applications including content creation, brainstorming, and information synthesis.
Instructions
Generate text using Gemini 2.5 Pro model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxTokens | No | Maximum number of tokens to generate (optional) | |
prompt | Yes | The text prompt to send to Gemini | |
temperature | No | Temperature for text generation (0.0 to 2.0) |
Input Schema (JSON Schema)
{
"properties": {
"maxTokens": {
"default": 1000,
"description": "Maximum number of tokens to generate (optional)",
"type": "number"
},
"prompt": {
"description": "The text prompt to send to Gemini",
"type": "string"
},
"temperature": {
"default": 1,
"description": "Temperature for text generation (0.0 to 2.0)",
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
}