Skip to content

NVIDIA LLM

Generative AI and digitalization are reshaping the $3 trillion automotive industry, from design and engineering to manufacturing, autonomous driving, and customer experience. NVIDIA is at the epicenter of this industrial transformation.

Categories: artificial-intelligence

Type: nvidia/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeControl TypeDescriptionRequired
tokenTokenSTRINGTEXTtrue

Actions

Ask

Name: ask

Ask anything you want.

Properties

NameLabelTypeControl TypeDescriptionRequired
modelModelSTRINGTEXTID of the model to use.true
messagesMessagesARRAY
Items [{STRING(role), STRING(content), [FILE_ENTRY](attachments)}]
ARRAY_BUILDERA list of messages comprising the conversation so far.true
responseResponseOBJECT
Properties {STRING(responseFormat), STRING(responseSchema)}
OBJECT_BUILDERThe response from the API.false
maxTokensMax TokensINTEGERINTEGERThe maximum number of tokens to generate in the chat completion.null
nNumber of Chat Completion ChoicesINTEGERINTEGERHow many chat completion choices to generate for each input message.null
temperatureTemperatureNUMBERNUMBERControls randomness: Higher values will make the output more random, while lower values like will make it more focused and deterministic.null
topPTop 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.null
frequencyPenaltyFrequency PenaltyNUMBERNUMBERNumber between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model’s likelihood to repeat the same line verbatim.null
presencePenaltyPresence PenaltyNUMBERNUMBERNumber between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model’s likelihood to talk about new topics.null
logitBiasLogit BiasOBJECT
Properties {}
OBJECT_BUILDERModify the likelihood of specified tokens appearing in the completion.null
stopStopARRAY
Items [STRING]
ARRAY_BUILDERUp to 4 sequences where the API will stop generating further tokens.null
userUserSTRINGTEXTA unique identifier representing your end-user, which can help admins to monitor and detect abuse.false

JSON Example

{
"label" : "Ask",
"name" : "ask",
"parameters" : {
"model" : "",
"messages" : [ {
"role" : "",
"content" : "",
"attachments" : [ {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
} ]
} ],
"response" : {
"responseFormat" : "",
"responseSchema" : ""
},
"maxTokens" : 1,
"n" : 1,
"temperature" : 0.0,
"topP" : 0.0,
"frequencyPenalty" : 0.0,
"presencePenalty" : 0.0,
"logitBias" : { },
"stop" : [ "" ],
"user" : ""
},
"type" : "nvidia/v1/ask"
}