{ "request": { "method": "POST", "url": "http://0.0.0.0:11434/v1/v1/chat/completions", "headers": {}, "body": { "model": "llama3.2:3b-instruct-fp16", "messages": [ { "role": "system", "content": "You are a helpful assistant" }, { "role": "user", "content": "What is the boiling point of the liquid polyjuice in celsius?" } ], "max_tokens": 512, "stream": true, "temperature": 0.0001, "tool_choice": { "type": "function", "function": { "name": "get_boiling_point" } }, "tools": [ { "type": "function", "function": { "name": "get_boiling_point", "description": "Returns the boiling point of a liquid in Celcius or Fahrenheit.", "parameters": { "type": "object", "properties": { "liquid_name": { "type": "string", "description": "The name of the liquid" }, "celcius": { "type": "boolean", "description": "Whether to return the boiling point in Celcius" } }, "required": [ "liquid_name" ] } } } ], "top_p": 0.9 }, "endpoint": "/v1/chat/completions", "model": "llama3.2:3b-instruct-fp16" }, "response": { "body": [ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { "id": "chatcmpl-733", "choices": [ { "delta": { "content": "", "function_call": null, "refusal": null, "role": "assistant", "tool_calls": [ { "index": 0, "id": "call_pm9dfvfk", "function": { "arguments": "{\"celcius\":true,\"liquid_name\":\"polyjuice\"}", "name": "get_boiling_point" }, "type": "function" } ] }, "finish_reason": null, "index": 0, "logprobs": null } ], "created": 1759437831, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, "system_fingerprint": "fp_ollama", "usage": null } }, { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { "id": "chatcmpl-733", "choices": [ { "delta": { "content": "", "function_call": null, "refusal": null, "role": "assistant", "tool_calls": null }, "finish_reason": "tool_calls", "index": 0, "logprobs": null } ], "created": 1759437831, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, "system_fingerprint": "fp_ollama", "usage": null } } ], "is_streaming": true } }