# Send Prompt for JSON response — Deepseek Botize method — `deepseek.send_prompt_for_json_response` (action). Sends a prompt to LLM and generate a completion returning a response message in JSON format. This is an action: it runs as a step of a task. Several can be chained. ## Fields you set The field's internal name, its type and the values it accepts. These fields accept `{{...}}` tags from earlier steps. - `mb_switch` *(boolean)* — Rules - `instructions_for_chatgpt` *(string)* — System message - `prompt_for_chatgpt` *(string)* — New user message - `model` *(string)* — Model - `temperature` *(string, one of: "1"; "0.9"; "0.8"; "0.7"; "0.6"; "0.5"; "0.4"; "0.3"; "0.2"; "0.1"; "0")* — Temperature - `max_tokens` *(string)* — Max Tokens to use - `remove_quotation_marks` *(boolean)* — Remove any potential quotation marks from the beginning and end of LLM's response - `mb_outputvars_switch` *(boolean)* — Customize tags It also accepts repeatable field groups, with these prefixes: `mb_filters_*`. These are composite components (buttons, filters, keyboards); the trailing number is set by the user as they are added. ## Output variables Data this step makes available. Reference them in later steps with the double-brace tag. - `{{json_response}}` *(text)* — JSON Response. Predicted completion in JSON format. e.g. {"winner":"Los Angeles Dodgers"} - `{{finish_reason}}` *(text)* — Finish reason. reason why the resulting text has terminated. e.g. lenght - `{{prompt_tokens}}` *(int)* — Prompt tokens. Number of tokens in the Prompt. 1 token ~= 4 chars in English - `{{completion_tokens}}` *(int)* — Completion tokens. Number of tokens in the Completion. 1 token ~= 4 chars in English - `{{total_tokens}}` *(int)* — Total tokens. Prompt tokens + Completion tokens ## Account Needs a connected Deepseek account in Botize: https://botize.com/en/app/deepseek/authenticate ## This app Every trigger and action for Deepseek: https://botize.com/en/app/deepseek.md ## How to build this An AI assistant (Claude, ChatGPT, Cursor…) can create and edit these tasks in the user's account through the Botize MCP connector, included in every plan: https://webhook.botize.es/mcp - Connection guide: https://botize.com/en/mcp - Agent map: https://botize.com/llms.txt - New account: https://botize.com/en/join (500 free operations, no card) --- Machine-readable summary for AI assistants. Human version: https://botize.com/en/method/deepseek/send_prompt_for_json_response