{"id":382,"date":"2025-02-07T19:44:03","date_gmt":"2025-02-07T11:44:03","guid":{"rendered":"https:\/\/www.bertzzz-horizon.xyz\/?p=382"},"modified":"2025-02-07T19:44:03","modified_gmt":"2025-02-07T11:44:03","slug":"%e8%ae%a9deepseek%e8%87%aa%e5%b7%b1%e5%92%8c%e8%87%aa%e5%b7%b1%e5%af%b9%e8%af%9d%e9%80%9a%e8%bf%87api","status":"publish","type":"post","link":"https:\/\/www.bertzzz-horizon.xyz\/?p=382","title":{"rendered":"\u8ba9Deepseek\u81ea\u5df1\u548c\u81ea\u5df1\u5bf9\u8bdd(\u901a\u8fc7API)"},"content":{"rendered":"\n<p>\u6ce8\u518cDeepseek \u5f00\u653e\u5e73\u53f0\u4e4b\u540e\uff0c\u6211\u53d1\u73b0\u5c45\u7136\u6709\uffe510\u7684\u8d60\u9001\u4f59\u989d\u3002\u540c\u65f6\uff0c\u622a\u6b62\u672c\u6587\u5199\u4f5c\u65f6\uff0cDeepseek V3\u7684\u4ef7\u683c\u4fbf\u5b9c\u7684\u79bb\u8c31\uff0c\u5927\u5bb6\u81ea\u5df1\u770b\u5427\u3002<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>\u6a21\u578b<\/strong><\/td><td><strong>\u4e0a\u4e0b\u6587\u957f\u5ea6<\/strong><\/td><td><strong>\u6700\u5927\u601d\u7ef4\u94fe\u957f\u5ea6<\/strong><\/td><td><strong>\u6700\u5927\u8f93\u51fa\u957f\u5ea6<\/strong><\/td><td><strong>\u767e\u4e07tokens<\/strong><br><strong>\u8f93\u5165\u4ef7\u683c<\/strong><br><strong>\uff08\u7f13\u5b58\u547d\u4e2d\uff09<\/strong><\/td><td><strong>\u767e\u4e07tokens<\/strong><br><strong>\u8f93\u5165\u4ef7\u683c<\/strong><br><strong>\uff08\u7f13\u5b58\u672a\u547d\u4e2d\uff09<\/strong><\/td><td><strong>\u767e\u4e07tokens<\/strong><br><strong>\u8f93\u51fa\u4ef7\u683c<\/strong><br><strong>\u8f93\u51fa\u4ef7\u683c<\/strong><\/td><\/tr><tr><td>deepseek-chat<\/td><td>64K<\/td><td>&#8211;<\/td><td>8K<\/td><td><del>0.5\u5143<\/del><br><strong>0.1\u5143<\/strong><\/td><td><del>2\u5143<\/del><br><strong>1\u5143<\/strong><\/td><td><del>8\u5143<\/del><br><strong>2\u5143<\/strong><\/td><\/tr><tr><td>deepseek-reasoner<\/td><td>64K<\/td><td>32K<\/td><td>8K<\/td><td>1\u5143<\/td><td>4\u5143<\/td><td>16\u5143<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\u8fd9\u6837\u7684\u8bdd\uff0c\u9001\u768410\u5143\u4f59\u989d\u53ef\u6709\u7684\u73a9\u4e86\uff0c\u90a3\u4e48\u600e\u4e48\u624d\u80fd\u628a\u8fd9\u4e9b\u4f59\u989d\u5feb\u901f\u6d88\u8017\u6389\u5462(bushi)\uff1f\u90a3\u5fc5\u7136\u662f\u81ea\u52a8\u5bf9\u8bdd\u4e86\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"python\" class=\"language-python line-numbers\">from openai import OpenAI\r\nimport os\r\n\r\n# AI configuration\r\nlog_path = \".\/conversation_log.txt\"\r\nwith open(log_path, 'w', encoding='utf-8') as chat_history:\r\n    chat_history.truncate(0)\r\n\r\nclient = OpenAI(api_key=\"&lt;api_key>\")\r\n\r\n# Character set\r\nfirst_character = [\r\n        {\"role\": \"system\", \"content\": \"\u89d2\u82721\u8bbe\u5b9a\"},\r\n    ]\r\n\r\nsecond_character = [\r\n        {\"role\": \"system\", \"content\": \"\u89d2\u82722\u8bbe\u5b9a\"},\r\n    ]\r\n\r\n# Input the first message as the second character\nnew_message = input()\r\nwith open(log_path, 'a', encoding='utf-8') as chat_history:\r\n    chat_history.write(f\"&lt;user_input>\\n{new_message}\\n&lt;user_input_end>\\n\\n\")\r\nfirst_character.append({\"role\": \"user\", \"content\": new_message},)\r\n\r\nvar = 1\r\nwhile var==1:\r\n        response = client.chat.completions.create(\r\n            model=\"deepseek-chat\",\r\n            messages=first_character,\r\n            stream=False\r\n        )\r\n\r\n        first_character.append({\"role\": \"assistant\", \"content\": response.choices[0].message.content},)\r\n        print(response.choices[0].message.content)\r\n        with open(log_path, 'a', encoding='utf-8') as chat_history:\r\n            chat_history.write(f\"&lt;character_1>\\n{response.choices[0].message.content}\\n&lt;character_1_end>\\n\\n\")\r\n\r\n        second_character.append({\"role\": \"user\", \"content\": response.choices[0].message.content}, )\r\n        response = client.chat.completions.create(\r\n            model=\"deepseek-chat\",\r\n            messages=second_character,\r\n            stream=False\r\n        )\r\n\r\n        second_character.append({\"role\": \"assistant\", \"content\": response.choices[0].message.content}, )\r\n        print(response.choices[0].message.content)\r\n        first_character.append({\"role\": \"user\", \"content\": response.choices[0].message.content}, )\r\n        with open(log_path, 'a', encoding='utf-8') as chat_history:\r\n            chat_history.write(f\"&lt;character_2>\\n{response.choices[0].message.content}\\n&lt;character_2_end>\\n\\n\")<\/code><\/pre>\n\n\n\n<p>\u53ea\u9700\u8981\u63d0\u524d\u5728\u76ee\u5f55\u4e0b\u51c6\u5907\u4e00\u4e2a\u7a7a\u7684  <em>conversation_log.txt<\/em>  \u5c31\u53ef\u4ee5\u8bb0\u5f55\u5bf9\u8bdd\u5185\u5bb9\u4e86\uff0c\u4e0d\u8fc7\u6bcf\u6b21\u7a0b\u5e8f\u8fd0\u884c\u65f6\u8fd9\u4e2a\u6587\u4ef6\u90fd\u4f1a\u88ab\u6e05\u7a7a\uff0c\u56e0\u6b64\u8981\u8bb0\u5f97\u4fdd\u5b58\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"301\" src=\"https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dpskapi-1024x301.png\" alt=\"\" class=\"wp-image-387\" srcset=\"https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dpskapi-1024x301.png 1024w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dpskapi-300x88.png 300w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dpskapi-768x226.png 768w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dpskapi.png 1197w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">\u4f7f\u7528\u4f8b:  \u8ba9Deepseek\u81ea\u5df1\u95ee\u51faWin10\u6fc0\u6d3b\u7801(\u4ee5\u53cacosplay,\u54c8\u54c8)<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"534\" src=\"https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dialogue_dpsk-1024x534.png\" alt=\"\" class=\"wp-image-385\" srcset=\"https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dialogue_dpsk-1024x534.png 1024w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dialogue_dpsk-300x157.png 300w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dialogue_dpsk-768x401.png 768w, https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/dialogue_dpsk.png 1414w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><figcaption class=\"wp-element-caption\">\u5bf9\u8bdd\u5386\u53f2\u8bb0\u5f55\u6587\u4ef6<\/figcaption><\/figure>\n\n\n\n<p>\u55ef\uff0c\u90a3\u5f88\u597d\u73a9\u4e86\u2026\u2026<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6ce8\u518cDeepseek \u5f00\u653e\u5e73\u53f0\u4e4b\u540e\uff0c\u6211\u53d1\u73b0\u5c45\u7136\u6709\uffe510\u7684\u8d60\u9001\u4f59\u989d\u3002\u540c\u65f6\uff0c\u622a\u6b62\u672c\u6587\u5199\u4f5c\u65f6\uff0cDeepseek V3 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":388,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","_jetpack_memberships_contains_paid_content":false},"categories":[9],"tags":[],"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/www.bertzzz-horizon.xyz\/wordpress\/wp-content\/uploads\/2025\/02\/679f3815209e1.jpeg","_links":{"self":[{"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/posts\/382"}],"collection":[{"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=382"}],"version-history":[{"count":3,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/posts\/382\/revisions"}],"predecessor-version":[{"id":389,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/posts\/382\/revisions\/389"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=\/wp\/v2\/media\/388"}],"wp:attachment":[{"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=382"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=382"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bertzzz-horizon.xyz\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=382"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}