Skip to content

MistralAI

Open, efficient, helpful and trustworthy AI models through ground-breaking innovations.

Categories: artificial-intelligence

Type: mistral/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeDescriptionRequired
tokenTokenSTRINGtrue

Actions

Ask

Name: ask

Ask anything you want.

Properties

NameLabelTypeDescriptionRequired
modelModelSTRING
Options codestral-latest, ministral-3b-latest, ministral-8b-latest, mistral-large-latest, mistral-small-latest, open-codestral-mamba, open-mistral-7b, open-mistral-nemo, open-mixtral-8x22b, open-mixtral-8x7b, pixtral-12b-2409, pixtral-large-latest
ID of the model to use.true
messagesMessagesARRAY
Items [{STRING(role), STRING(content), [FILE_ENTRY](attachments)}]
A list of messages comprising the conversation so far.true
responseResponseOBJECT
Properties {STRING(responseFormat), STRING(responseSchema)}
The response from the API.false
maxTokensMax TokensINTEGERThe maximum number of tokens to generate in the chat completion.null
temperatureTemperatureNUMBERControls randomness: Higher values will make the output more random, while lower values like will make it more focused and deterministic.null
topPTop PNUMBERAn 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.null
stopStopARRAY
Items [STRING]
Up to 4 sequences where the API will stop generating further tokens.null
seedSeedINTEGERKeeping the same seed would output the same response.null
safePromptSafe promptBOOLEAN
Options true, false
Should the prompt be safe for work?null

Example JSON Structure

{
"label" : "Ask",
"name" : "ask",
"parameters" : {
"model" : "",
"messages" : [ {
"role" : "",
"content" : "",
"attachments" : [ {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
} ]
} ],
"response" : {
"responseFormat" : "",
"responseSchema" : ""
},
"maxTokens" : 1,
"temperature" : 0.0,
"topP" : 0.0,
"stop" : [ "" ],
"seed" : 1,
"safePrompt" : false
},
"type" : "mistral/v1/ask"
}

Output

The output for this action is dynamic and may vary depending on the input parameters. To determine the exact structure of the output, you need to execute the action.