{"id":903,"date":"2024-03-09T21:59:59","date_gmt":"2024-03-09T13:59:59","guid":{"rendered":"https:\/\/www.sunjw.cn\/?p=903"},"modified":"2024-03-09T22:01:37","modified_gmt":"2024-03-09T14:01:37","slug":"ollama-api-%e8%b0%83%e7%94%a8","status":"publish","type":"post","link":"https:\/\/www.sunjw.cn\/index.php\/2024\/03\/09\/ollama-api-%e8%b0%83%e7%94%a8\/","title":{"rendered":"ollama API \u8c03\u7528"},"content":{"rendered":"\n<p>\u901a\u8fc7API\u65b9\u5f0f\uff0c\u53ef\u4ee5\u7b80\u5355\u8c03\u7528\u591a\u4e2a\u672c\u5730\u5927\u6a21\u578b\uff0c\u53ef\u4ee5\u8fdb\u884c\u7ed3\u679c\u5bf9\u6bd4\u3002\u540e\u7eed\u53ef\u4ee5\u8054\u7cfb\u591a\u4e2a\u5927\u6a21\u578b\uff0c\u901a\u8fc7\u534f\u540c\u5de5\u4f5c\u5b8c\u6210\u76f8\u5bf9\u590d\u6742\u7684\u4efb\u52a1\u3002<\/p>\n\n\n\n<p>\u5f53\u524d\u6bd4\u8f83\u7b80\u5355\u7684\u4e24\u79cd\u65b9\u5f0f\u8fdb\u884collama API\u8c03\u7528\uff0c\u4f7f\u7528openai\u7684\u5e93\uff0c\u6216\u8005\u4f7f\u7528ollama\u81ea\u5df1\u7684\u5e93\u3002<\/p>\n\n\n\n<h2>1\u3001\u4f7f\u7528OpenAI\u65b9\u5f0f<\/h2>\n\n\n\n<p>pip install openai<\/p>\n\n\n\n<p>\u793a\u4f8b<\/p>\n\n\n\n<p>\u8fd0\u884collama\u540e<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>from openai import OpenAI\nclient = OpenAI(\n    base_url =\"&lt;http:\/\/localhost:11434\/v1>\",\n    api_key='ollama',#api_key\u6ca1\u7528\uff0c\u5e94\u8be5\u662f\u968f\u4fbf\u586b\n)\nresponse = client.chat.completions.create(\r\n  model=\"gemma:7b\",\r\n  messages=&#91;\r\n    {\"role\": \"system\", \"content\": \"\u4f60\u7684\u6211\u7684\u95ee\u7b54\u52a9\u624b\"},\r\n    {\"role\": \"user\", \"content\": \"\u6d77\u6c34\u91cc\u4e3a\u4ec0\u4e48\u6709\u76d0\"},\r\n  ]\r\n)\r\nprint(response.choices&#91;0].message.content)\n<\/code><\/pre>\n\n\n\n<h2>2\u3001\u4f7f\u7528ollama python<\/h2>\n\n\n\n<p>pip install ollama<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\u4e00\u6b21\u6027\u8f93\u51fa\nresponse = ollama.chat(model='qwen:14b', messages=&#91;\n    {\n        'role': 'user',\n        'content': '1990\u5e74\u53d1\u751f\u4e86\u4ec0\u4e48',\n    },\n])\n\n\u6d41\u5f0f\u8f93\u51fa\n response2 = ollama.chat(model='llama2-chinese:13b', messages=&#91;\n        {\"role\": \"system\", \"content\": \"\u4f60\u662f\u6211\u7684\u6587\u5b57\u52a9\u624b\uff0c\u5e2e\u6211\u6574\u7406\u6750\u6599\uff0c\u683c\u5f0f\u5316\u6587\u672c\"},\n        {   'role': 'user', 'content': \"\u5e2e\u6211\u603b\u7ed3\u4e00\u7bc7\u6587\u7ae0\"},\n    ],\n    stream=True,\n    )\n for c in response2:\n     print(c&#91;'message']&#91;'content'], end='',flush=True)<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u901a\u8fc7API\u65b9\u5f0f\uff0c\u53ef\u4ee5\u7b80\u5355\u8c03\u7528\u591a\u4e2a\u672c\u5730\u5927\u6a21\u578b\uff0c\u53ef\u4ee5\u8fdb\u884c\u7ed3\u679c\u5bf9\u6bd4\u3002\u540e\u7eed\u53ef\u4ee5\u8054\u7cfb\u591a\u4e2a\u5927\u6a21\u578b\uff0c\u901a\u8fc7\u534f\u540c\u5de5\u4f5c\u5b8c\u6210\u76f8\u5bf9\u590d\u6742 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[5],"tags":[],"_links":{"self":[{"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/posts\/903"}],"collection":[{"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/comments?post=903"}],"version-history":[{"count":3,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/posts\/903\/revisions"}],"predecessor-version":[{"id":906,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/posts\/903\/revisions\/906"}],"wp:attachment":[{"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/media?parent=903"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/categories?post=903"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sunjw.cn\/index.php\/wp-json\/wp\/v2\/tags?post=903"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}