{"id":400,"date":"2026-03-28T11:04:00","date_gmt":"2026-03-28T03:04:00","guid":{"rendered":"https:\/\/mitongxue.cn\/?p=400"},"modified":"2026-06-14T11:08:24","modified_gmt":"2026-06-14T03:08:24","slug":"function-calling","status":"publish","type":"post","link":"https:\/\/mitongxue.cn\/index.php\/2026\/03\/28\/function-calling\/","title":{"rendered":"Function Calling"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"671\" height=\"885\" src=\"https:\/\/mitongxue.cn\/wp-content\/uploads\/2026\/06\/image-57.png\" alt=\"\" class=\"wp-image-401\" srcset=\"https:\/\/mitongxue.cn\/wp-content\/uploads\/2026\/06\/image-57.png 671w, https:\/\/mitongxue.cn\/wp-content\/uploads\/2026\/06\/image-57-227x300.png 227w\" sizes=\"auto, (max-width: 671px) 100vw, 671px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">\u524d\u9762\u662f\u901a\u8fc7 <strong>\u63d0\u793a\u8bcd<\/strong> \u7684\u5f62\u5f0f\uff0c\u5c06\u5de5\u5177\u7bb1\u5e26\u8fc7\u53bb\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u8fd9\u79cd\u65b9\u5f0f\u6709\u4ec0\u4e48\u95ee\u9898\uff1f<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u7e41\u7410\uff1a\u5927\u6bb5\u5927\u6bb5\u7684\u63d0\u793a\u8bcd\uff0c\u4ec5\u4ec5\u662f\u4e3a\u4e86\u7ea6\u675f\u5927\u6a21\u578b\u7684\u8f93\u51fa<\/li>\n\n\n\n<li>\u4e0d\u6807\u51c6\uff1a\u6bcf\u4e2a\u5f00\u53d1\u8005\u7684\u63d0\u793a\u8bcd\u7684\u63cf\u8ff0\u5343\u5dee\u4e07\u522b<\/li>\n\n\n\n<li>\u7ea6\u675f\u529b\u4e0d\u9ad8\uff1a\u5373\u4fbf\u4f7f\u7528\u4e86\u8bed\u6c14\u6700\u91cd\u7684\u63d0\u793a\u8bcd\uff0c\u5927\u6a21\u578b\u7684\u5e95\u5c42\u539f\u7406\u51b3\u5b9a\u4e86\u5b83\u603b\u4f1a\u6709\u4e0d\u6309\u7167\u8981\u6c42\u56de\u590d\u7684\u60c5\u51b5<\/li>\n<\/ol>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u5de5\u5177\u7bb1\u7684\u63d0\u4f9b<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ \u5de5\u5177\u7bb1\nconst tools = &#91;{\n    type: \"function\",\n    name: \"get_weather\",\n    description: \"Get current temperature for provided coordinates in celsius.\",\n    parameters: {\n        type: \"object\",\n        properties: {\n            latitude: { type: \"number\" },\n            longitude: { type: \"number\" }\n        },\n        required: &#91;\"latitude\", \"longitude\"],\n        additionalProperties: false\n    },\n    strict: true\n}];<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>\u8fd4\u56de\u7684\u8c03\u7528\u5de5\u5177\u8bf7\u6c42<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;{\n    \"type\": \"function_call\",\n    \"id\": \"fc_12345xyz\",\n    \"call_id\": \"call_12345xyz\",\n    \"name\": \"get_weather\",\n    \"arguments\": \"{\\\"latitude\\\":48.8566,\\\"longitude\\\":2.3522}\"\n}]<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u4e0d\u540c\u7684\u6a21\u578b\uff0cFunction Calling\u7684\u683c\u5f0f\u4e0d\u4e00\u81f4\u3002<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">deepseek<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tools = &#91;{<br> &nbsp;\"type\": \"function\",<br> &nbsp;\"function\": {<br> &nbsp; &nbsp; &nbsp;\"name\": \"get_weather\",<br> &nbsp; &nbsp; &nbsp;\"description\": \"Get weather of an location\",<br> &nbsp; &nbsp; &nbsp;\"parameters\": {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"type\": \"object\",<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"properties\": {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"location\": {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"type\": \"string\",<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"description\": \"The city and state, e.g. San Francisco, CA\",<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<br> &nbsp; &nbsp; &nbsp; &nbsp;  },<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;\"required\": &#91;\"location\"]<br> &nbsp; &nbsp;  },<br>  }<br>}]<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">GPT<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>const tools = &#91;{<br> &nbsp; &nbsp;type: \"function\",<br> &nbsp; &nbsp;name: \"get_weather\",<br> &nbsp; &nbsp;description: \"Get current temperature for provided coordinates in celsius.\",<br> &nbsp; &nbsp;parameters: {<br> &nbsp; &nbsp; &nbsp; &nbsp;type: \"object\",<br> &nbsp; &nbsp; &nbsp; &nbsp;properties: {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;latitude: { type: \"number\" },<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;longitude: { type: \"number\" }<br> &nbsp; &nbsp; &nbsp;  },<br> &nbsp; &nbsp; &nbsp; &nbsp;required: &#91;\"latitude\", \"longitude\"],<br> &nbsp; &nbsp; &nbsp; &nbsp;additionalProperties: false<br> &nbsp;  },<br> &nbsp; &nbsp;strict: true<br>}];<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">claude<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\"tools\": &#91;{<br> &nbsp;\"name\": \"get_weather\",<br> &nbsp;\"description\": \"Get the current weather in a given location\",<br> &nbsp;\"input_schema\": {<br> &nbsp; &nbsp;\"type\": \"object\",<br> &nbsp; &nbsp;\"properties\": {<br> &nbsp; &nbsp; &nbsp;\"location\": {<br> &nbsp; &nbsp; &nbsp; &nbsp;\"type\": \"string\",<br> &nbsp; &nbsp; &nbsp; &nbsp;\"description\": \"The city and state, e.g. San Francisco, CA\"<br> &nbsp; &nbsp;  }<br> &nbsp;  },<br> &nbsp; &nbsp;\"required\": &#91;\"location\"]<br>  }<br>}],<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u524d\u9762\u662f\u901a\u8fc7 \u63d0\u793a\u8bcd \u7684\u5f62\u5f0f\uff0c\u5c06\u5de5\u5177\u7bb1\u5e26\u8fc7\u53bb\u3002 \u8fd9\u79cd..<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27,6,7],"tags":[],"class_list":["post-400","post","type-post","status-publish","format-standard","hentry","category-ai","category-news","category-keji"],"featured_image_urls":{"full":"","thumbnail":"","medium":"","medium_large":"","large":"","1536x1536":"","2048x2048":""},"author_info":{"info":["\u9648 \u67d0\u4eba"]},"category_info":"<a href=\"https:\/\/mitongxue.cn\/index.php\/category\/ai\/\" rel=\"category tag\">AI<\/a> <a href=\"https:\/\/mitongxue.cn\/index.php\/category\/news\/\" rel=\"category tag\">\u65b0\u95fb<\/a> <a href=\"https:\/\/mitongxue.cn\/index.php\/category\/keji\/\" rel=\"category tag\">\u79d1\u6280<\/a>","tag_info":"\u79d1\u6280","comment_count":"0","_links":{"self":[{"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/posts\/400","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/comments?post=400"}],"version-history":[{"count":1,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/posts\/400\/revisions"}],"predecessor-version":[{"id":402,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/posts\/400\/revisions\/402"}],"wp:attachment":[{"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/media?parent=400"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/categories?post=400"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mitongxue.cn\/index.php\/wp-json\/wp\/v2\/tags?post=400"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}