DeepSeek
DeepSeek is a built-in action that allows your GPM Automate script to connect directly to the DeepSeek API system. With its outstanding advantages of ultra-low cost and logical thinking capabilities, programming, and a very powerful language, this action is a perfect alternative or complement to Chat GPT for automating content creation tasks, data analysis, or intelligent text processing.
Instructions for registering, purchasing API, and configuring the DeepSeek action
The operation mechanism and cost calculation via the DeepSeek API are similar to OpenAI (Prepaid, use as much as deducted). The specific setup process includes the following steps:
Step 1: Register an account and Top up (API Credits)
You visit the official API management page of DeepSeek at: https://platform.deepseek.com and proceed to create an account.
After logging in, go to the Top up or Billing section to link an international payment card (Visa/Mastercard) and top up the desired amount (usually a minimum of $2 - $5) to activate the API usage quota.
Step 2: Initialize and obtain the DeepSeek API Key
In the left menu bar, select the API Keys section.
Click on the Create new secret key button, name the key (For example:
GPM_DeepSeek_Key).The system will display a long security string starting with
sk-.... You should copy and save it immediately as this string will be hidden and will not be displayed again.
Step 3: Obtain the exact Model name list
DeepSeek provides two extremely optimized core models; you only need to enter one of the following identifiers accurately into the GPM configuration box. You can view the list of DeepSeek models here: https://api-docs.deepseek.com/quick_start/pricing.
Configuration parameters in GPM Automate:
When dragging the DeepSeek action into the Main workflow, you set it up as follows:
API Key: Paste the secret key
sk-...obtained in Step 2 here (or pass it through a variable for security).DeepSeek Model: Enter the exact string
deepseek-chatordeepseek-reasoning.Prompt: Enter the content of your command or detailed request (For example:
"Please analyze the following conversation and extract the customer's phone number: $webContent").Output variable: Name the output variable (For example:
deepseekResult) so that the system automatically saves the AI's response text string, ready for subsequent data entry actions.
Practical example: Automatically translate and rewrite article titles (Rewrite Title) to avoid copyright
When you do Marketing, POD, or create content in the international market (such as the German market), you need to scrape product titles from English E-commerce pages, then translate them into German and rewrite them a bit to post on your store to optimize SEO and avoid content duplication.
Configuration method:
Suppose you have scraped the original English title and saved it into the variable
$originTitle.Call the DeepSeek action in the script.
API Key:
sk-proj-xxxxxxxxxxxxxxxxxxxxDeepSeek Model:
deepseek-v4-flashPrompt: You enter the directive content for the AI:
Output variable: Name the output variable as
aiContent.
Result: The system will push the title in the variable $originTitle to DeepSeek for processing. The AI will quickly translate and optimize the wording into German, then directly load the most concise text result into the variable $aiContent. In the subsequent steps, you just need to call this variable $aiContent to automatically fill in the input field on your website, helping to automate the cross-border content creation process very professionally.

Last updated
Was this helpful?