Skip to content

Anthropic

Reference


Anthropic is an AI safety and research company that’s working to build reliable, interpretable, and steerable AI systems.

Categories: [artificial-intelligence]

Version: 1


Connections

Version: 1

Bearer Token

Properties

NameTypeControl TypeDescription
TokenSTRINGTEXT

Actions

Ask

Ask anything you want.

Properties

NameTypeControl TypeDescription
ModelSTRINGSELECTID of the model to use.
Messages[{STRING(content), STRING(role)}]ARRAY_BUILDERA list of messages comprising the conversation so far.
Max tokensINTEGERINTEGERThe maximum number of tokens to generate in the chat completion.
Response formatINTEGERSELECTIn which format do you want the response to be in?
TemperatureNUMBERNUMBERControls randomness: Higher values will make the output more random, while lower values like will make it more focused and deterministic.
Top PNUMBERNUMBERAn alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.
Top KINTEGERINTEGERSpecify the number of token choices the generative uses to generate the next token.
Stop[STRING]ARRAY_BUILDERUp to 4 sequences where the API will stop generating further tokens.
Functions[STRING]ARRAY_BUILDEREnter the names of functions you want to use.