chat
Interact with various AI models from OpenAI, Anthropic, Google, and AWS Bedrock using a unified interface to generate responses for chat inputs.
Instructions
Chat with specified AI model.
Args:
model: Model name from configuration (e.g., 'gpt-4', 'claude-sonnet-4')
inputs: Chat input (string or OpenAI-format messages)
Returns:
AI model response as string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputs | Yes | ||
model | Yes |
Input Schema (JSON Schema)
{
"properties": {
"inputs": {
"anyOf": [
{
"type": "string"
},
{
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
}
],
"title": "Inputs"
},
"model": {
"title": "Model",
"type": "string"
}
},
"required": [
"model",
"inputs"
],
"title": "chatArguments",
"type": "object"
}