Anthropic
Anthropic is an advanced AI platform that allows users to interact with AI models to generate conversational responses. This integration enables users to send structured input messages and receive generated responses, facilitating seamless AI-driven conversations.
Send a message
Send a structured list of input messages and generate the next message in the conversation.
Fields
-
Model ID: This field specifies the model that will complete your prompt. You need to choose a valid model ID, such as 'claude-3-5-sonnet-20241022'. You can find a full list of available models in the model documentation provided by Anthropic. This field is required and must be a string.
-
Maximum Tokens: This field determines the maximum number of tokens to generate in a single API call. It must be an integer value. The default value is 1024. Ensure that you enter a valid number to avoid errors. This field is required.
-
Messages: This field contains the list of conversation turns formatted as a JSON array. Each element in the array should have a role and content, for example:
[{"role": "user", "content": "Hello, world"}]
. This field is required and must be a valid JSON array. -
Temperature: This optional field controls the randomness of the response. It is a number between 0.0 and 1.0, where lower values make the responses more deterministic. The default value is 1.0. Ensure that you enter a valid number within the specified range.
Output
The output of this action is the next message in the conversation generated by the selected AI model. The response will be structured according to the input parameters and the model's capabilities, providing a coherent continuation of the conversation based on the input messages.