prompt
Send a single prompt to multiple language models across providers like OpenAI, Anthropic, and Google Gemini using a unified interface. Ideal for comparing outputs efficiently.
Instructions
Send a prompt to multiple LLM models
Input Schema
Name | Required | Description | Default |
---|---|---|---|
models_prefixed_by_provider | No | List of models with provider prefixes (e.g., 'openai:gpt-4o' or 'o:gpt-4o'). If not provided, uses default models. | |
text | Yes | The prompt text |
Input Schema (JSON Schema)
{
"properties": {
"models_prefixed_by_provider": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "List of models with provider prefixes (e.g., 'openai:gpt-4o' or 'o:gpt-4o'). If not provided, uses default models.",
"title": "Models Prefixed By Provider"
},
"text": {
"description": "The prompt text",
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"title": "PromptSchema",
"type": "object"
}