関数呼び出し
知らせ
deepseek-chat
モデルの関数呼び出し能力の現在のバージョンは不安定であり、ループされた呼び出しまたは空の応答が発生する可能性があります。私たちは修正に積極的に取り組んでおり、次のバージョンで解決されることが期待されています。サンプルコード
from openai import OpenAI
def send_messages(messages):
response = client.chat.completions.create(
model="deepseek-chat",
messages=messages,
tools=tools
)
return response.choices[0].message
client = OpenAI(
api_key="<your api key>",
base_url="https://api.deepseek.com",
)
tools = [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get weather of an location, the user shoud supply a location first",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA",
}
},
"required": ["location"]
},
}
},
]
messages = [{"role": "user", "content": "How's the weather in Hangzhou?"}]
message = send_messages(messages)
print(f"User>\t {messages[0]['content']}")
tool = message.tool_calls[0]
messages.append(message)
messages.append({"role": "tool", "tool_call_id": tool.id, "content": "24℃"})
message = send_messages(messages)
print(f"Model>\t {message.content}")
1.
2.
get_weather({location: 'Hangzhou'})
3.
get_weather({location: 'Hangzhou'})
結果をモデルに提供します4.
get_weather
関数の機能をユーザーが提供する必要があります。モデル自体は特定の関数を実行しません。