You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my function call (simulate weather service)
request
{
"messages": [
{
"role": "user",
"content": "What's the weather like today in New York?"
}
],
"model": "deepseek-chat",
"stream": false,
"temperature": 1.0,
"top_p": 1.0,
"tools": [
{
"type": "function",
"function": {
"name": "get_current_weather",
"description": "Get the current weather",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA"
},
"format": {
"type": "string",
"description": "The temperature unit to use. C for Celsius, F for Fahrenheit"
}
},
"required": [
"location",
"format"
]
}
}
}
]
}
This is my function call (simulate weather service)
request
deepseek reply (with funCall request)
And I reply :
BUT deepseek asks again !!! Instead of summarize the weather data.
This situation won't occur on OpenAI's function calling.
Is there anything wrong ?
Thanks.
The text was updated successfully, but these errors were encountered: