ds-free-api / examples /adapter_cli /tool_call.json
heyeyydss's picture
Upload 154 files
69f686e verified
Raw
History Blame
518 Bytes
{
"model": "deepseek-default",
"messages": [
{ "role": "user", "content": "北京今天天气怎么样?" }
],
"tools": [
{
"type": "function",
"function": {
"name": "get_weather",
"description": "获取指定城市的天气",
"parameters": {
"type": "object",
"properties": {
"city": { "type": "string", "description": "城市名" }
},
"required": ["city"]
}
}
}
],
"tool_choice": "auto"
}