curl --request POST \ --url https://deadlock.p.nadles.com/deepseek-v3/completion \ --header 'Content-Type: application/json' \ --data '{"messages":[{"role":"user","content":"I was once in hawai during summer and was buying rivian stocks there using revolut, I wonder how is it all now ?"}],"max_tokens":1000,"temperature":0.7,"top_p":0.9,"stream":false,"search_web":false, "functions":[{ "name": "get_weather", "description": "Get weather in a location for a specific season", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "City name" }, "season": { "type": "string", "description": "Season of the year (spring, summer, fall, winter, or current)", "enum": ["spring", "summer", "fall", "winter", "current"] } }, "required": ["location"] } }, { "name": "get_stock_price", "description": "Get stock price from a specific broker", "parameters": { "type": "object", "properties": { "stock_name": { "type": "string", "description": "Stock symbol or name" }, "broker_name": { "type": "string", "description": "Name of the broker" } }, "required": ["stock_name", "broker_name"] } }] }'
result:
{ "function_calls": [ { "arguments": { "location": "Hawaii", "season": "summer" }, "name": "get_weather" }, { "arguments": { "broker_name": "Revolut", "stock_name": "RIVN" }, "name": "get_stock_price" } ]}