← Tools Reference

DeepSeek

DeepSeek integration (AI). Imported from open-connector.

API key4 toolshttps://api.deepseek.com/anthropic
GET
deepseek_list_models
List the available DeepSeek models.

/models

GET
deepseek_get_user_balance
Get the current DeepSeek account balance.

/user/balance

POST
deepseek_create_chat_completion
Create a DeepSeek chat completion via the OpenAI-compatible API.

/chat/completions

16 parameters
ParamTypeRequiredDescription
modelstringrequiredThe DeepSeek model identifier.
messagesarrayrequiredThe ordered conversation history to send to the model.
frequency_penaltynumberoptionalThe frequency penalty to apply to repeated tokens.
logprobsbooleanoptionalWhether to include token-level log probability details in the response.
max_tokensintegeroptionalThe maximum number of tokens to generate.
presence_penaltynumberoptionalThe presence penalty to apply to newly introduced tokens.
response_formatobjectoptional
stopstringoptionalOne or more sequences that stop generation.
streambooleanoptionalWhether to request a streaming response. This connector only accepts false or o…
stream_optionsobjectoptionalStreaming options for the request.
temperaturenumberoptionalThe sampling temperature to use for generation.
thinkingobjectoptional
tool_choicestringoptionalThe tool selection policy for the chat completion request.
toolsarrayoptionalThe tools available to the model.
top_logprobsintegeroptionalThe number of top token log probabilities to return.
top_pnumberoptionalThe nucleus sampling threshold.
POST
deepseek_create_anthropic_message
Create a DeepSeek message via the Anthropic-compatible API.

/v1/messages

11 parameters
ParamTypeRequiredDescription
modelstringrequiredThe DeepSeek model identifier.
max_tokensintegerrequiredThe maximum number of tokens to generate.
messagesarrayrequiredThe ordered conversation history to send to the model.
stop_sequencesarrayoptionalSequences that stop generation.
streambooleanoptionalWhether to request a streaming response. This connector only accepts false or o…
systemstringoptionalMessage content as plain text or structured blocks.
temperaturenumberoptionalThe sampling temperature to use for generation.
thinkingobjectoptionalThinking configuration for the Anthropic-compatible request.
tool_choicestringoptionalHow the model should choose tools for the request.
toolsarrayoptionalThe tools available to the model.
top_pnumberoptionalThe nucleus sampling threshold.