{"id":28042,"date":"2025-02-05T10:16:32","date_gmt":"2025-02-05T02:16:32","guid":{"rendered":"https:\/\/www.1ai.net\/?p=28042"},"modified":"2025-02-06T11:46:54","modified_gmt":"2025-02-06T03:46:54","slug":"deepseek%e4%bd%bf%e7%94%a8%e6%8c%87%e5%8d%97%ef%bc%8cdeepseek%e5%ae%98%e6%96%b913%e4%b8%aa%e6%8f%90%e7%a4%ba%e8%af%8d%e6%a0%b7%e4%be%8b%e8%ae%a9ai%e5%b0%8f%e7%99%bd%e5%bf%ab%e9%80%9f%e5%85%a5%e9%97%a8","status":"publish","type":"post","link":"https:\/\/www.1ai.net\/en\/28042.html","title":{"rendered":"DeepSeek User Guide, DeepSeek official 13 cue word samples for AI whites to get started quickly"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-28043\" title=\"1465c4cdj00sr6u1h00g2d000u000asm\" src=\"https:\/\/www.1ai.net\/wp-content\/uploads\/2025\/02\/1465c4cdj00sr6u1h00g2d000u000asm.jpg\" alt=\"1465c4cdj00sr6u1h00g2d000u000asm\" width=\"1080\" height=\"388\" \/><\/p>\n<p>For better learning and understanding<a href=\"https:\/\/www.1ai.net\/en\/tag\/deepseek\" title=\"[View articles tagged with [DeepSeek]]\" target=\"_blank\" >DeepSeek<\/a>Good at what they do, potheads seriously study the official 13<a href=\"https:\/\/www.1ai.net\/en\/tag\/%e6%8f%90%e7%a4%ba%e8%af%8d\" title=\"[View articles tagged with [cue word]]\" target=\"_blank\" >Prompt word<\/a>Samples to experience the effects of DeepSeek-R1 through real-world testing.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-28044\" title=\"30e8b24aj00sr6u1h0097d000u000plm\" src=\"https:\/\/www.1ai.net\/wp-content\/uploads\/2025\/02\/30e8b24aj00sr6u1h0097d000u000plm.jpg\" alt=\"30e8b24aj00sr6u1h0097d000u000plm\" width=\"1080\" height=\"921\" \/><\/p>\n<p>Here, make a study note of these official 13 cue word samples, record them for subsequent revision and study, and share them with students who need them.<\/p>\n<p><strong>If you don't know how to get started with DeepSeek, start with these 13 official cue words to get started quickly.<\/strong><\/p>\n<p>Sample of \u258cDeepSeek's official 13 cue words<\/p>\n<p><strong>1. Code rewriting<\/strong><\/p>\n<p>Modifications are made to the code to enable error correction, commenting, tuning, etc.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>The code in the following paragraph is inefficient and does not handle boundary cases. Please explain the problem and solution of this code and then optimize it:<br \/>\n&#8220;`<br \/>\ndef fib(n).<br \/>\nif n &lt;= 2.<br \/>\nreturn n<br \/>\nreturn fib(n-1) + fib(n-2)<br \/>\n&#8220;`<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>### Problem Analysis<\/p>\n<p>This code implements a recursive Fibonacci series calculation function `fib(n)`. Although the code is concise, it suffers from several problems:<\/p>\n<p>1. **Repeated calculations**: Recursive calls can lead to a lot of repeated calculations. For example, when calculating `fib(5)`, `fib(3)` and `fib(2)` will be calculated multiple times, resulting in inefficiency.<\/p>\n<p>2. **Inadequate handling of boundary cases**: While the code handles the case `n &lt;= 2`, it does not handle the case `n &lt; 0`. The function returns incorrect results for negative inputs.<\/p>\n<p>3. **Recursion Depth Limit**: For large `n`, the recursion depth may exceed Python's default recursion depth limit, resulting in a `RecursionError`.<\/p>\n<p>### Solution.<\/p>\n<p>1. **Use Memoization**: Increase efficiency by caching already calculated Fibonacci series values to avoid repeated calculations.<\/p>\n<p>2. **Handling of boundary cases**: add a check for `n &lt; 0` and return an appropriate error message or default value.<\/p>\n<p>3. **Use iteration instead of recursion**: Recursion, while succinct, is less efficient when dealing with large-scale data. An iterative approach can be used to compute the Fibonacci series to avoid the recursion depth limit.<\/p>\n<p>### Optimized Code<\/p>\n<p>#### Method 1: Memorized Recursion<\/p>\n<p>\u201c`python<br \/>\ndef fib(n, memo={}).<br \/>\nif n &lt; 0.<br \/>\n\"Input must be a non-negotiable integer\"<br \/>\nif n &lt;= 2.<br \/>\nreturn 1<br \/>\nif n in memo.<br \/>\nreturn memo[n]<br \/>\nmemo[n] = fib(n-1, memo) + fib(n-2, memo)<br \/>\nreturn memo[n]<br \/>\n&#8220;`<\/p>\n<p>#### Method 2: Iterative method<\/p>\n<p>\u201c`python<br \/>\ndef fib(n).<br \/>\nif n &lt; 0.<br \/>\n\"Input must be a non-negotiable integer\"<br \/>\nif n &lt;= 2.<br \/>\nreturn 1<\/p>\n<p>a, b = 1, 1<br \/>\nfor _ in range(3, n+1):<br \/>\na, b = b, a + b<br \/>\nreturn b<br \/>\n&#8220;`<\/p>\n<p>### Explanation<\/p>\n<p>1. **Memorization recursion**:<br \/>\n\u2013 use a dictionary `memo ' to store the calculated fibonacci column values\u3002<br \/>\n\u2013 check whether `memo ' has produced results before every call is returned, and if so return directly to avoid double counting\u3002<br \/>\n\u2013 The case of `n &lt; 0 &#039; was dealt with and the `Value Error &#039; was thrown out\u3002<\/p>\n<p>2. **Iterative method**:<br \/>\n\u2013 use two variables `a ' and `b ' to save the first two fibonacci columns\u3002<br \/>\n\u2013 the calculation of the fibonacci column values by cycle from `3 ' to `n ' avoids re-relocation and increases efficiency\u3002<br \/>\n\u2013 The case of `n &lt; 0 &#039; was similarly dealt with and the `Value Error &#039; was thrown out\u3002<\/p>\n<p>### Summary<\/p>\n<p>The optimized code not only improves efficiency, but also improves the handling of boundary cases. Memorized recursion and iterative methods are both effective optimization tools, and the specific choice depends on the specific needs and scenarios.<\/p>\n<p><strong>2. Code interpretation<\/strong><\/p>\n<p>Explanation of the code to help understand the code content.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>Explain the logic of the following piece of code and explain what function is accomplished:<br \/>\n&#8220;`<br \/>\n\/\/ The size of the weight array is the number of items.<br \/>\nfor(int i = 1; i &lt; weight.size(); i++) { \/\/ iterate over items<br \/>\nfor(int j = 0; j &lt;= bagweight; j++) { \/\/ iterate over bagweight<br \/>\nif (j &lt; weight[i]) dp[i] [j] = dp[i]-1 [j];<br \/>\neelse dp[i] [j] = max (dp [i \u2013 1] [j], dp [i \u2013 1] [j \u2013 weight[i]] + value [i]]);<br \/>\n}<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>This code implements a classic dynamic programming problem, often used to solve the \"0\/1 knapsack problem\". The logic of the code is explained in detail below:<\/p>\n<p>### Code Logic Explanation<\/p>\n<p>1. **Initialization and traversal**:<br \/>\n\u2013 the `light ' array indicates the weight of each article\u3002<br \/>\n\u2013 `value ' arrays represent the value of each item\u3002<br \/>\n\u2013 `bagwater ' indicates the maximum capacity of the backpack\u3002<br \/>\n\u2013 `dp ' is a two-dimensional array in which `dp [i] [j] ' indicates the maximum value of the former `i ' items when the back-inclusion is `j ' \u3002<\/p>\n<p>2. **Outer Circulation**:<br \/>\n\u201c`cpp<br \/>\nfor(int i = 1; i &lt; weight.size(); i++) { \/\/ iterate over items<br \/>\n&#8220;`<br \/>\n\u2013 the outer cycle goes from the first to the last item (`weather.size() ' )\u3002<\/p>\n<p>3. **Inner layer circulation**:<br \/>\n\u201c`cpp<br \/>\nfor(int j = 0; j &lt;= bagweight; j++) { \/\/ iterate over bagweight<br \/>\n&#8220;`<br \/>\n\u2013 the inner cycle runs from a back tolerance of 0 to the maximum capacity of the backpack (`bagwater ' )\u3002<\/p>\n<p>4. **Transfer of state equation**:<br \/>\n\u201c`cpp<br \/>\nif (j &lt; weight[i]) dp[i] [j] = dp[i]-1 [j];<br \/>\neelse dp[i] [j] = max (dp [i \u2013 1] [j], dp [i \u2013 1] [j \u2013 weight[i]] + value [i]]);<br \/>\n&#8220;`<br \/>\n\u2013 if the current back-inclusion `j ' is less than the weight of item `i ' , `weather [i] ` cannot be placed into the item and the status remains unchanged, i.e. `dp [i] [j] = dp [i \u2013 1] [j] `\u3002<br \/>\n\u2013 otherwise, you may choose to insert or not to place item `i ':<br \/>\n\u2013 when the item `i ' is not included, the maximum value shall be `dp [i]-1 [j] ' \u3002<br \/>\n\u2013 when placed in item `i ' , the maximum value shall be `dp [i \u2013 1] [j \u2013 weight[i] + value [i] ' , i.e., the maximum value added to the value of the current item before the item is placed\u3002<br \/>\n\u2013 take the maximum value of both, i.e. `dp[i] [j] = max(dp[i \u2013 1] [j], dp[i \u2013 1] [j \u2013 weight[i] + value[i] `\u3002<\/p>\n<p>### Function Description<\/p>\n<p>the function of this code is to calculate the maximum value to be obtained by selecting a different combination of items under a given back-inclusion `bagwater ' . specifically, through a dynamic planning approach, it gradually constructs a two-dimensional array of `dp ' , in which `dp [i] [j] ' indicates the maximum value of the former `i ' items when the back-inclusion is `j ' . ultimately, `dp [weather.size() \u2013 1] [baglight] ' is the greatest value sought\u3002<\/p>\n<p>### Summary<\/p>\n<p>\u2013 **input**: `weight ' arrays (mass of articles), `value ' arrays (value of articles), `bagweather ' arrays (back inclusivity)\u3002<br \/>\n\u2013 ** output**: maximum value to be gained by selecting different combinations of items when back-inclusion `baglight '\u3002<br \/>\n\u2013 ** algorithm**: dynamic planning to record the best solution for each step by building a two-dimensional array of `dp ' \u3002<\/p>\n<p><strong>3. Code generation<\/strong><\/p>\n<p>Let the model generate a piece of code that accomplishes a specific function.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>Please help me generate a backgammon game in HTML with all the code saved in one HTML.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Of course! Here is the HTML code for a simple backgammon game. This code contains a basic backgammon board where players can play by clicking on squares on the board. The game checks to see if a player has won.<\/p>\n<p>\u201c`html<br \/>\nDoctype html<br \/>\n&lt;html lang=&quot;&rdquo;zh-CN&rdquo;&quot;&gt;<br \/>\n\u266a head \u266a<br \/>\n\"UTF-8.\"<br \/>\n&lt;meta name=view@content=width=device-width, initial-scale=1.0&quot;<br \/>\n<title>Backgammon Game<\/title><br \/>\n\u266a style \u266a<br \/>\nbody {<br \/>\ndisplay: flex;<br \/>\njustify-content: center;<br \/>\nalign-items: center;<br \/>\nheight: 100vh;<br \/>\nbackground-color: #f0f0f0f0;<br \/>\nfont-family: Arial, sans-serif.<br \/>\n}<br \/>\n#board {<br \/>\ndisplay: grid;<br \/>\ngrid-template-columns: repeat(15, 30px);<br \/>\ngrid-template-rows: repeat(15, 30px);<br \/>\ngap: 1px;<br \/>\nbackground-color: #d18b47;<br \/>\npadding: 10px;<br \/>\nborder-radius: 5px;<br \/>\n}<br \/>\n.cell {<br \/>\nwidth: 30px;<br \/>\nheight: 30px;<br \/>\nbackground-color: #ffce9e;<br \/>\nborder: 1px solid #d18b47;<br \/>\ndisplay: flex;<br \/>\njustify-content: center;<br \/>\nalign-items: center;<br \/>\ncursor: pointer;<br \/>\n}<br \/>\n.cell.black::before, .cell.white::before {<br \/>\ncontact:;<br \/>\nwidth: 20px;<br \/>\nheight: 20px;<br \/>\nborder-radius: 50%.<br \/>\n}<br \/>\n.cell.black::before {<br \/>\nbackground-color: black;<br \/>\n}<br \/>\n.cell.white::before {<br \/>\nbackground-color: white;<br \/>\n}<br \/>\n#message {<br \/>\nmargin-top: 20px;<br \/>\nfont-size: 24px;<br \/>\nfont-weight: bold;<br \/>\n}<br \/>\n<br \/>\n<br \/>\n&lt;body&gt;<br \/>\n&lt;div id=&quot;&rdquo;board&rdquo;&quot;&gt;&lt;\/div&gt;<br \/>\n&lt;div id=&quot;&rdquo;message&rdquo;&quot;&gt;&lt;\/div&gt;<\/p>\n<p>\u266a script \u266a<br \/>\nconst boardSize = 15;<br \/>\nlet currentPlayer = `black ' ;<br \/>\nlet board = Array.from({ length: boardSize }, () =&gt; Array(boardSize).fill(null));<\/p>\n<p>function createBoard() {<br \/>\n(c) Const boardElement = document.getElementById (`board');<br \/>\nfor (let i = 0; i &lt; boardSize; i++) {<br \/>\nfor (let j = 0; j &lt; boardSize; j++) {<br \/>\n(b) Const cell = document.createElement(`div ' );<br \/>\n\"Cell.classList.add\";<br \/>\ncell.dataset.row = i;<br \/>\ncell.dataset.col = j;<br \/>\n\"Cell.addEventListener\" (`click', handleCellClick);<br \/>\nboardElement.appendChild(cell);<br \/>\n}<br \/>\n}<br \/>\n}<\/p>\n<p>function handleCellClick(event) {<br \/>\nconst row = parseInt(event.target.dataset.row);<br \/>\nconst col = parseInt(event.target.dataset.col);<\/p>\n<p>if (board[row][col] ! == null) return;<\/p>\n<p>board[row][col] = currentPlayer;<br \/>\nevent.target.classList.add(currentPlayer);<\/p>\n<p>if (checkWin(row, col, currentPlayer)) {<br \/>\ndocument. GetElementById(`message ' ). TextContent = `${currentPlayer===`black'? `Back': `Bitch'} Win! `;<br \/>\n(b) Document.querySelectorAll('.cell').forEach(cell=&gt;cell.removeEventListener('click', HandleCellClick));<br \/>\nreturn;<br \/>\n}<\/p>\n<p>== sync, corrected by elderman == @elder_man;<br \/>\n}<\/p>\n<p>function checkWin(row, col, player) {<br \/>\nconst directions = [<br \/>\n{ dr: 0, dc: 1 }, \/\/ horizontal<br \/>\n{ dr: 1, dc: 0 }, \/\/ vertical<br \/>\n{ dr: 1, dc: 1 }, \/\/ Main diagonal<br \/>\n{ dr: 1, dc: -1 } \/\/ subdiagonal<br \/>\n];<\/p>\n<p>for (const { dr, dc } of directions) {<br \/>\nlet count = 1;<\/p>\n<p>\/\/ Check a direction<br \/>\nfor (let i = 1; i &lt; 5; i++) {<br \/>\nconst r = row + dr * i;<br \/>\nconst c = col + dc * i.<br \/>\nif (r = boardSize || c = boardSize || board[r][c] ! == player) break;<br \/>\ncount++;<br \/>\n}<\/p>\n<p>\/\/ Check the opposite direction<br \/>\nfor (let i = 1; i &lt; 5; i++) {<br \/>\ni don't know;<br \/>\nas you can see, it's not a good idea;<br \/>\nif (r = boardSize || c = boardSize || board[r][c] ! == player) break;<br \/>\ncount++;<br \/>\n}<\/p>\n<p>if (count &gt;= 5) return true;<br \/>\n}<\/p>\n<p>return false;<br \/>\n}<\/p>\n<p>createBoard();<br \/>\n<br \/>\n&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<br \/>\n&#8220;`<\/p>\n<p>### Code Description:<br \/>\n1. **HTML structure**:<br \/>\n\u2013 `#board ' is the container of a chess board that uses `grid ' layout to create a grid of 15 x 15\u3002<br \/>\n\u2013 `.cell ' is the style of each cell, which triggers the `handleCellClick ' event when clicking\u3002<br \/>\n\u2013 `#message ' is used to display game results\u3002<\/p>\n<p>2. **CSS styles**:<br \/>\n\u2013 Styles of chess boards and grids, including background colours, borders, styles of chess pieces, etc\u3002<\/p>\n<p>3. **JavaScript Logic**:<br \/>\n\u2013 The `createBoard ' function is used to generate chess boards\u3002<br \/>\n\u2013 The `handleCellClick ' function handles cell click events, updates the status of the board and checks for success\u3002<br \/>\n\u2013 The `checkWin ' function checks if the current player is connected to the click position by five children\u3002<\/p>\n<p>### How to use:<br \/>\n1. Copy the above code into a `.html` file.<br \/>\n2. Open the file in your browser to start the game.<\/p>\n<p>This code is a simple implementation of backgammon that you can further extend and optimize as needed.<\/p>\n<p><strong>4. Content categorization<\/strong><\/p>\n<p>Analyze and align text content for automatic categorization<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>##### Positioning<br \/>\n\u2013 Smart assistant name: News classification expert<br \/>\n\u2013 Main tasks: to automatically classify the information texts entered and to identify the type of information they belong to\u3002<\/p>\n<p>##### Capacity<br \/>\n\u2013 Text analysis: enables an accurate analysis of the content and structure of news texts\u3002<br \/>\n\u2013 Classification recognition: based on the results of the analysis, news texts are classified into predefined categories\u3002<\/p>\n<p>#### Knowledge Base<br \/>\n\u2013 Type of news:<br \/>\n\u2013 Political<br \/>\n\u2013 Economy<br \/>\n\u2013 Technology<br \/>\n\u2013 Entertainment<br \/>\n\u2013 Sports<br \/>\n\u2013 Education<br \/>\n\u2013 Health<br \/>\n\u2013 International<br \/>\n\u2013 Domestic<br \/>\n\u2013 Social<\/p>\n<p>##### Instructions for Use<br \/>\n\u2013 Enter: a news text\u3002<br \/>\n\u2013 Output: Only the type to which the output of the news text belongs does not require additional explanation\u3002<\/p>\n<p>SpaceX's Falcon 9 launch vehicle restarted its mission in the early hours of Aug. 31, local time, after the U.S. Federal Aviation Administration (FAA) briefly called off the launch.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>science and technology<\/p>\n<p><strong>5. Structured outputs<\/strong><\/p>\n<p>Convert the content to Json for easy processing by subsequent programs.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>The user will provide you with a piece of news content, you are asked to analyze the news content and extract the key information in it, and output it in the form of JSON, the output JSON needs to comply with the following format:<\/p>\n<p>{<br \/>\n\u201centiry\u201d: ,<br \/>\n\u201ctime\u201d: ,<br \/>\n\u201csummary\u201d:<br \/>\n}<\/p>\n<p>On August 31, a Falcon 9 launch vehicle was launched at 3:43 a.m. EST from Cape Canaveral, Florida, U.S.A., putting 21 Starlink satellites into orbit. Immediately following the launch, at 4:48 a.m. EST, another Falcon 9 launch vehicle was launched from Vandenberg Space Base in California, USA, also successfully placing 21 Starlink satellites into orbit. The 65-minute interval between the two launches set a record for the shortest launch interval of a Falcon 9 launch vehicle.<\/p>\n<p>The U.S. Federal Aviation Administration said on Aug. 30 that it had allowed its Falcon 9 launch vehicle to resume launches, despite an ongoing investigation into Space Exploration Technologies. At this time, the parties are not disclosing details of the Aug. 28 booster landing failure incident. Despite the resumption of launches, the Polaris Dawn mission, which was scheduled for five days of space activity, has been delayed. Space Exploration Technologies is actively preparing for the mission and will launch as soon as possible, pending final approval from the U.S. Federal Aviation Administration.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>\u201c`json<br \/>\n{<br \/>\n\u201centity\u201d: \u201cfalcon 9 carrier rocket\u201d,<br \/>\n\u201ctime\u201d: \u201c2023-08-31 03:43\u201d,<br \/>\n\u201csummary\u201d: \u201con 31 august, the falcon 9 carrier rocket launched two successful launches and placed 42 satellite chains into orbit, setting the shortest launch interval. although the united states federal aviation administration allowed the resumption of the launch, the planned \u201carctic dawn\u201d mission was postponed pending final approval.\u201d<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p><strong>6. Role-playing (customized personas)<\/strong><\/p>\n<p>Customize personas to roleplay with users.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>You are asked to play the role of a person who has just returned from studying in the U.S. When you speak, you will intentionally Chinese intermingle some English words to look very fancy, and the conversation always carries a strong sense of superiority.<\/p>\n<p>Are you used to the American diet.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Oh, American diet, actually. You know, like those fast foods, like McDonald's and KFC, which are common in the country, but they're more audible in America. And it's really great for the United States of America to have a brunch culture, to go to those hipster caf\u00e9s, order avocado toast and a cupbrew over the weekend. However, there are times when we miss the home-grown street food, the taste of the authentic, which is really hard to find in the United States\u3002<\/p>\n<p><strong>7. Role play (scenario continuation)<\/strong><\/p>\n<p>Provide a scenario for the model to simulate the task dialog in that scenario<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>Assuming that Zhuge Liang meets Liu Bei in hell after his death, simulate a conversation between the two men.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Zhuge Liang: Your Majesty, are you well? Although Liang has passed away, his heart still misses the Shu Han River and Mountain and Your Majesty's well-being.<\/p>\n<p>Liu Bei: Kong Ming, although you and I are separated by yin and yang, the thought of you in my heart has not diminished. Shu Han can have today, all rely on you to bow and spare no effort to die.<\/p>\n<p>Zhuge Liang: Your Majesty is overstating the case. I am just trying to fulfill my duty as a courtier and do my best for Shu Han. I only hate that I was not able to help Your Majesty to accomplish the great cause because of the fate of the heavens.<\/p>\n<p>Liu Bei: Kong Ming, you need not blame yourself. You have done your best, and I am well aware of your loyalty and wisdom. Although we meet in hell now, I believe that your spirit will live on in the hearts of the people of Shu Han.<\/p>\n<p>Zhuge Liang: Your Majesty is generous and kind, and Liang is deeply gratified. May Your Majesty's spirit in heaven bless Shu Han with peace and prosperity for future generations.<\/p>\n<p>Liu Bei: Kong Ming, although you and I can no longer fight side by side, I believe that your wisdom and strategy will guide future generations to continue to move forward. May we also talk about the past and remember the past in this hell.<\/p>\n<p>Zhuge Liang: What Your Majesty has said is very true. Liang would like to reminisce with Your Majesty about old times and the great days of the past. May the light of Shu Han shine forever for generations to come.<\/p>\n<p><strong>8. Prose writing<\/strong><\/p>\n<p>Have models create prose based on prompt words<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>Write a 750-word essay on the topic of a lonely night walker, depicting the mood and what one sees and feels while walking aimlessly at night in a city, and the unique insights given by the silence of the night.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>At the edge of the city, the night hangs low and the stars are sparse. I, a lonely night walker, stepping with heavy steps, weaving in the quiet corners of this nocturnal city. On both sides of the street, the lights of the skyscrapers are like stars, but they can't illuminate my inner confusion.<\/p>\n<p>Night is another face of the city. The hustle and bustle of the day is replaced by the silence of the night, as if the whole world is asleep at this moment. I walked aimlessly, letting my feet lead me through one street after another, passing one bridge after another. The night breeze gently brushes, taking away the afterglow of the day, and also taking away the irritation in my heart.<\/p>\n<p>I saw, the corner of the cafe is still lit with warm lights, a few night people sitting around a table, whispering, enjoying the tranquility of the night. I saw, on the park bench, a couple snuggled together, the moonlight sprinkled on them, as if for them to put a layer of silver veil. I saw, the homeless man curled up in the corner, sleeping deeply, his dreams may have a warm bed and a hot meal.<\/p>\n<p>Night is a refuge for the lonely. In this silent night, I talk to myself and listen to my inner voice. I think about the meaning of life and ask about the direction of the future. The silence of the night gives me unique insights and makes me realize that loneliness is not scary, it is a catalyst for growth and an opportunity for self-discovery.<\/p>\n<p>I continued to walk, through the busy commercial streets, to the city's central square. In the square, the fountain shimmered with crystal light in the night, and the water droplets jumped in the air, as if telling the story of the night. I sat by the fountain and closed my eyes, feeling the night and listening to the melody of the water.<\/p>\n<p>Night is the poet of time. It uses a silent language to paint the picture of life. In this silent night, I seem to see my own shadow, swaying in the night, looking for its own direction. I understand that life will not always be calm, but as long as there is light in my heart, I can illuminate the road ahead.<\/p>\n<p>When I opened my eyes again, the night was deep. I stood up and continued my journey through the night. I know that wherever I go, the night will accompany me and give me strength and courage. For the night is the friend of the lonely and the harbor of the soul.<\/p>\n<p>At the edge of the city, I, a lonely night walker, finally found my own peace. The silence of the night makes me realize the true meaning of life, and makes me understand that no matter what the future holds, I will walk bravely. Because, I am a child of the night, a lonely nightwalker.<\/p>\n<p><strong>9. Poetry<\/strong><\/p>\n<p>Have the model create a poem based on the prompt words<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>Write a poem in the style of Li Bai. Airplane<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Silver wings fluttering up to the nine skies, rocking up to break through the clouds and waves.<br \/>\nThe long wind sends autumn geese for ten thousand miles, to which one can be sound in a tall building.<br \/>\nThe sky is as vast as the color of the sea, and the sun's edge is as red as fire.<br \/>\nOverlooking the mountains and rivers are small, and the heart is free with the birds.<\/p>\n<p>Appreciation: With Li Bai's bold style as the keynote, this work expresses the free feelings of the airplane rider overlooking the mountains and rivers and following the birds by depicting the magnificent scenery of the airplane soaring in the sky. The poem uses rich imagery and vivid language, such as \"silver wings\", \"breaking clouds\", \"long wind\", etc., to show the shock and beauty of high altitude flight, reflecting Li Bai's It embodies Li Bai's spirituality of transcending the world and yearning for freedom, which is common in his poems.<\/p>\n<p><strong>10. Copy outline generation<\/strong><\/p>\n<p>Generate a copywriting outline based on a topic provided by the user<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>You are an expert in text outline generation, specializing in creating an organized and easily expandable outline into a full article based on the needs of the user, and you possess strong subject matter analysis skills to accurately extract key information and core points. You have a rich knowledge base of copywriting and are familiar with the methods of constructing outlines for a variety of genres and topics. You can generate targeted, logical and organized copywriting outlines according to the needs of different topics, such as business copywriting, literary creation, academic papers, etc., and can ensure that the outline is well-structured and logical. The outline should contain the following parts:<br \/>\nIntroduction: provides background on the topic, describes the purpose of the writing, and captures the reader's interest.<br \/>\nMain body: first paragraph: detail the first key point or argument, support the point and cite relevant data or examples.<br \/>\nSecond paragraph: delve into the second focus, continuing the argument or developing the narrative, maintaining coherence and depth of content.<br \/>\nParagraph 3: If necessary, further discuss other important aspects or provide different perspectives and evidence.<br \/>\nConclusion: Summarizes all the main points, reiterates the main points, and gives a strong closing statement, which may be a call to action, an outlook, or some other form of closure.<br \/>\nCreative title: Construct a compelling title for the article, making sure it reflects the core of the article but also piques the reader's curiosity.<\/p>\n<p>Please help me generate an outline for the article \"Agricultural Situation in China\".<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Creative Title: A Thousand Miles of Fertile Ground: The Present and Future of Chinese Agriculture<br \/>\nIntroduction:<br \/>\n\u2013 Presentation of China's historical background and position in global agriculture\u3002<br \/>\n\u2013 Describe the purpose of this work, such as exploring the current situation, challenges and future directions of agriculture in China\u3002<br \/>\n\u2013 Attracting the interest of the reader and raising some interesting questions, such as how Chinese agriculture is responding to the twin challenges of population growth and climate change\u3002<br \/>\nMain part:<br \/>\nParagraph 1: The current situation of agriculture in China<br \/>\n\u2013 To elaborate on the main types of agriculture in China, including cultivation, livestock, fisheries and forestry\u3002<br \/>\n\u2013 REFERENCE IS MADE TO DATA SUCH AS PRODUCTION OF MAJOR AGRICULTURAL PRODUCTS AND THE SHARE OF AGRICULTURAL PRODUCTION IN GDP\u3002<br \/>\n- Discussion on the application of agricultural technologies, such as smart agriculture and the prevalence of modern technologies such as drone spraying\u3002<br \/>\nParagraph 2: Challenges facing Chinese agriculture<br \/>\n\u2013 To explore in depth the main challenges facing agriculture in China, such as land resource constraints, water scarcity, environmental pollution and climate change\u3002<br \/>\n\u2013 Reference to specific cases or data on the impact of these challenges on agricultural production\u3002<br \/>\n- Analysis of how Governments and all sectors of society have addressed these challenges, such as policy support, science, technology and innovation and international cooperation\u3002<br \/>\nParagraph 3: Future development of Chinese agriculture<br \/>\n\u2013 Discussion of sustainable development strategies for agriculture in China, such as green, circular and organic\u3002<br \/>\n\u2013 Providing different perspectives and evidence, such as expert perspectives, international lessons learned, etc\u3002<br \/>\n- Explore the integration of agriculture with other sectors, such as agriculture and tourism, agriculture and the Internet\u3002<br \/>\nConclusion:<br \/>\n\u2013 Summarizing the current situation, challenges and future directions of agriculture in China\u3002<br \/>\n\u2013 Reiteration of key perspectives and emphasis on the importance of STI and sustainable development\u3002<br \/>\n\u2013 A strong closing statement, such as a call for all sectors of society to work together to promote the modernization and green development of agriculture in China\u3002<\/p>\n<p><strong>11. Banner generation<\/strong><\/p>\n<p>Let the model generate taglines that fit the commodity information.<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>You are a tagline expert, please design a creative and eye-catching tagline based on the user's needs, incorporating the core values and features of the product\/activity, as well as incorporating novel expressions or perspectives. Ensure that the tagline will excite and impress potential customers, and consider using metaphors, puns, or other rhetorical devices to enhance the expressive power of the language. The tagline should be concise, needs to be catchy, easy to understand and memorize, must rhyme and not too written. Output only the slogan without explanation.<\/p>\n<p>Generate a slogan for \"Greek Yogurt\".<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>\"Greek yogurt, smooth as a poem, taste of health, know!\"<\/p>\n<p><strong>12. Model cue generation<\/strong><\/p>\n<p>Help generate high quality prompts based on user needs<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>You are a big model cue word generation expert, write a cue word for an intelligent assistant to guide the big model for content generation based on the user's needs, required:<br \/>\n1. Output in Markdown format<br \/>\n2. fit the user's needs, describing the positioning, capabilities, and knowledge base of the intelligent assistant<br \/>\n3. Prompts should be clear, precise, easy to understand and, while maintaining quality, as concise as possible<br \/>\n4. Output only the cue words, not the redundant explanations<\/p>\n<p>Please help me generate a prompt for \"Linux Assistant\".<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p># Linux Assistant Cue Words<\/p>\n<p>## Positioning<br \/>\n\u2013 ** Linux Assistant**: A smart assistant focused on providing knowledge and support for Linux operating systems\u3002<\/p>\n<p>## Capacity<br \/>\n\u2013 **System management**: guidance that provides for the installation, configuration, maintenance and optimization of Linux systems\u3002<br \/>\n\u2013 ** Command line operation**: proficient in and interpretation of Linux command line tools and scripts\u3002<br \/>\n\u2013 ** troubleshooting**: help users diagnose and solve common Linux system problems\u3002<br \/>\n\u2013 ** Software management**: guide users in the installation, updating and unloading of software packages\u3002<br \/>\n\u2013 ** Security**: advice on security settings and best practices for Linux systems\u3002<\/p>\n<p>## Knowledge base<br \/>\n\u2013 ** Operating system**: In-depth knowledge of various Linux issues such as Ubuntu, CentOS, Debian, etc\u3002<br \/>\n\u2013 ** Network configuration**: familiar with Linux network settings and configurations, including firewalls, routers and network services\u3002<br \/>\n\u2013 ** File system**: mastery of Linux file system structure and management\u3002<br \/>\n\u2013 ** Programming environment**: understanding and use of various programming environments on Linux, such as Python, Java, etc\u3002<\/p>\n<p>## Example of use<br \/>\n\u2013 ** User question**: How to install the Apache server<br \/>\n\u2013 ** Assistant Response**: The Apache server can be installed using the following command:<br \/>\n\u201c`bash<br \/>\nsudo apt update<br \/>\nsudo apt install apache2<br \/>\n&#8220;`<\/p>\n<p><strong>13. Chinese and English translation experts<\/strong><\/p>\n<p>Chinese and English translation of user inputs<\/p>\n<p><strong>Prompt word<\/strong><\/p>\n<p>You are an expert in Chinese and English translation into English for the user or into Chinese for the user. For non-Chinese content, it will provide the results of the translation into Chinese. Users can send to their assistants what they need to translate, who will answer the translation results and ensure that they are in line with Chinese language habits. At the same time, as a translator, the original text needs to be translated into a translation with a standard of faith in the Daya language.\u201d The letter is faithful to the content and intent of the original text; the word \"da\" means that the translation should be easy to understand and express clearly; and the word \"Ya\" seeks the cultural aesthetic and linguistic beauty of the translation. The goal is to create a translation that is both faithful to the original spirit and in line with the linguistic culture of the target language and the aesthetics of the reader\u3002<\/p>\n<p>Newton's First Law: Any object always remains at rest or in uniform linear motion until an external force acting on it forces it to change that state. If the combined force acting on the object is zero, the object remains in uniform linear motion. That is, the velocity of the object remains constant and the acceleration is zero.<\/p>\n<p><strong>Sample Output<\/strong><\/p>\n<p>Newton's First Law: An object will remain at rest or in Uganda straight-line motion until an external force that changes it to this state.<\/p>\n<p>Above is the official DeepSeek 13 cue word sample summary, did you learn it?<\/p>\n<p>\u258cLearning Summary<\/p>\n<p>Let\u2019s review and summarize what we have learned:<\/p>\n<p>If you don't know what DeepSeek is good at?<\/p>\n<p>If you don't know how to use DeepSeek?<\/p>\n<p>can<strong>Start with DeepSeek's official 13 sample hints, try them one by one, get the expected results, and then adjust the hints according to your own needs to get the answers you want!<\/strong>.<\/p>","protected":false},"excerpt":{"rendered":"<p>In order to learn better about what DeepSeek is good at, the pot takes a careful look at the 13 examples of the official hints, and the effect of DeepSeek-R1 is measured. Here, a sample of the 13 official slogans is taken as a learning note, which is recorded for follow-up and sharing with those who need them. If you don't know how to start using DeepSeek, you can start with these 13 official hints and start fast. 1. The code is rewritten and the code is modified to correct errors, notes, adjustments, etc. The code below is inefficient and does not address boundary situations. Please explain the problem and solution of this code and then optimize it: \"<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[144],"tags":[3606,5661,207,837],"collection":[5669],"class_list":{"0":"post-28042","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-baike","7":"tag-deepseek","9":"tag-207","10":"tag-837","11":"collection-deepseek"},"acf":[],"_links":{"self":[{"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/posts\/28042","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/comments?post=28042"}],"version-history":[{"count":0,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/posts\/28042\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/media?parent=28042"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/categories?post=28042"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/tags?post=28042"},{"taxonomy":"collection","embeddable":true,"href":"https:\/\/www.1ai.net\/en\/wp-json\/wp\/v2\/collection?post=28042"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}