curl -X POST "https://api.incredible.one/v1/chat-completion" \
-H "Content-Type: application/json" \
-d '{
"model": "small-1",
"stream": false,
"messages": [
{"role": "user", "content": "What is 127 + 349?"},
{"type": "function_call", "function_call_id": "CALL_ID_FROM_STEP_1", "function_calls": [{
"name": "calculate_sum", "input": {"a": 127, "b": 349}
}]},
{"type": "function_call_result", "function_call_id": "CALL_ID_FROM_STEP_1", "function_call_results": [476]}
],
"functions": [{
"name": "calculate_sum",
"description": "Add two numbers together and return the sum",
"parameters": {
"type": "object",
"properties": {"a": {"type": "number"}, "b": {"type": "number"}},
"required": ["a", "b"]
}
}]
}'