ask_openai
Query OpenAI GPT models using prompts and customizable parameters via MCP AI Bridge for AI-driven insights and responses.
Instructions
Ask OpenAI GPT models a question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | The model to use (default: gpt-4o-mini) | gpt-4o-mini |
prompt | Yes | The prompt to send to OpenAI | |
temperature | No | Temperature for response generation (0-2) |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"default": "gpt-4o-mini",
"description": "The model to use (default: gpt-4o-mini)",
"enum": [
"gpt-4o",
"gpt-4o-mini",
"gpt-4o-2024-11-20",
"gpt-4o-2024-08-06",
"gpt-4o-2024-05-13",
"gpt-4o-mini-2024-07-18",
"chatgpt-4o-latest",
"gpt-4-turbo",
"gpt-4-turbo-2024-04-09",
"gpt-4",
"gpt-4-0613",
"o1",
"o1-mini",
"o1-preview",
"o1-pro",
"o3-mini",
"gpt-3.5-turbo"
],
"type": "string"
},
"prompt": {
"description": "The prompt to send to OpenAI",
"type": "string"
},
"temperature": {
"default": 0.7,
"description": "Temperature for response generation (0-2)",
"maximum": 2,
"minimum": 0,
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
}