← Tools Reference

Together AI

Together AI integration (AI, Developer Tools). Imported from open-connector.

API key3 toolshttps://api.together.ai/v1
GET
together_ai_list_models
List the Together AI models available to the current API key.

/models

POST
together_ai_create_chat_completion
Create a non-streaming Together AI chat completion.

/chat/completions

27 parameters
ParamTypeRequiredDescription
modelstringrequiredThe Together AI model identifier to use.
messagesarrayrequiredThe ordered conversation history sent to the model.
max_tokensintegeroptionalThe maximum number of tokens to generate.
stoparrayoptionalThe stop sequences where generation should stop.
temperaturenumberoptionalThe sampling temperature.
top_pnumberoptionalThe nucleus sampling threshold.
top_kintegeroptionalThe maximum number of next-token choices to consider.
context_length_exceeded_behaviorstringoptionalHow the API should behave when max_tokens exceeds the model context length.
repetition_penaltynumberoptionalThe repetition penalty applied to generated text.
streambooleanoptionalWhether to request a streaming response. This connector only accepts false or a…
logprobsintegeroptionalThe number of top token log probabilities to include.
echobooleanoptionalWhether the response should include the prompt.
nintegeroptionalThe number of completions to generate for each prompt.
min_pnumberoptionalAn alternative probability threshold to top_p and top_k.
presence_penaltynumberoptionalThe presence penalty applied to newly introduced topics.
frequency_penaltynumberoptionalThe frequency penalty applied to repeated tokens.
logit_biasobjectoptionalToken bias adjustments keyed by token id.
seedintegeroptionalA seed for reproducible sampling.
function_callstringoptionalHow a legacy function call should be selected.
response_formatobjectoptionalResponse format configuration.
toolsarrayoptionalTools available to the model.
tool_choicestringoptionalTool selection strategy for the request.
compliancestringoptionalThe compliance mode accepted by the API.
chat_template_kwargsobjectoptionalA JSON object with arbitrary upstream fields.
safety_modelstringoptionalThe moderation model used to validate tokens.
reasoning_effortstringoptionalThe reasoning effort level to apply.
reasoningobjectoptionalReasoning configuration for models that support toggling reasoning.
POST
together_ai_create_embedding
Create Together AI embeddings for one or more text inputs.

/embeddings

2 parameters
ParamTypeRequiredDescription
modelstringoptionalThe Together AI embedding model identifier to use.
inputstringoptionalThe text input or inputs to embed.