diff --git a/llama_stack/providers/inline/agents/meta_reference/responses/streaming.py b/llama_stack/providers/inline/agents/meta_reference/responses/streaming.py index 4d5b5bda62..7eaf08e135 100644 --- a/llama_stack/providers/inline/agents/meta_reference/responses/streaming.py +++ b/llama_stack/providers/inline/agents/meta_reference/responses/streaming.py @@ -355,8 +355,11 @@ async def _process_streaming_chunks( # Emit arguments.done events for completed tool calls (differentiate between MCP and function calls) for tool_call_index in sorted(chat_response_tool_calls.keys()): + tool_call = chat_response_tool_calls[tool_call_index] + # Ensure that arguments, if sent back to the inference provider, are not None + tool_call.function.arguments = tool_call.function.arguments or "{}" tool_call_item_id = tool_call_item_ids[tool_call_index] - final_arguments = chat_response_tool_calls[tool_call_index].function.arguments or "" + final_arguments = tool_call.function.arguments tool_call_name = chat_response_tool_calls[tool_call_index].function.name # Check if this is an MCP tool call diff --git a/tests/integration/agents/test_openai_responses.py b/tests/integration/agents/test_openai_responses.py index c783cf99ba..6648257e69 100644 --- a/tests/integration/agents/test_openai_responses.py +++ b/tests/integration/agents/test_openai_responses.py @@ -264,3 +264,36 @@ def test_function_call_output_response(openai_client, client_with_models, text_m assert ( "sunny" in response2.output[0].content[0].text.lower() or "warm" in response2.output[0].content[0].text.lower() ) + + +def test_function_call_output_response_with_none_arguments(openai_client, client_with_models, text_model_id): + """Test handling of function call outputs in responses when function does not accept arguments.""" + if isinstance(client_with_models, LlamaStackAsLibraryClient): + pytest.skip("OpenAI responses are not supported when testing with library client yet.") + + client = openai_client + + # First create a response that triggers a function call + response = client.responses.create( + model=text_model_id, + input=[ + { + "role": "user", + "content": "what's the current time? You MUST call the `get_current_time` function to find out.", + } + ], + tools=[ + { + "type": "function", + "name": "get_current_time", + "description": "Get the current time", + "parameters": {}, + } + ], + stream=False, + ) + + # Verify we got a function call + assert response.output[0].type == "function_call" + assert response.output[0].arguments == "{}" + _ = response.output[0].call_id diff --git a/tests/integration/recordings/responses/05e3ebc68306.json b/tests/integration/recordings/responses/05e3ebc68306.json index 53b7c8a89d..b7d0a6e8e6 100644 --- a/tests/integration/recordings/responses/05e3ebc68306.json +++ b/tests/integration/recordings/responses/05e3ebc68306.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-618", + "id": "chatcmpl-447", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245078, + "created": 1759282456, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/0b27fd737699.json b/tests/integration/recordings/responses/0b27fd737699.json index e25cde820d..76979dd288 100644 --- a/tests/integration/recordings/responses/0b27fd737699.json +++ b/tests/integration/recordings/responses/0b27fd737699.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:37:47.461886Z", + "created_at": "2025-09-30T17:37:24.035083658Z", "done": true, "done_reason": "stop", - "total_duration": 338927833, - "load_duration": 100895125, + "total_duration": 2990785181, + "load_duration": 52933018, "prompt_eval_count": 223, - "prompt_eval_duration": 221583042, + "prompt_eval_duration": 2884018743, "eval_count": 2, - "eval_duration": 12341416, + "eval_duration": 53216446, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/0b3f2e4754ff.json b/tests/integration/recordings/responses/0b3f2e4754ff.json index 8496deeb0f..fdfc30e1fa 100644 --- a/tests/integration/recordings/responses/0b3f2e4754ff.json +++ b/tests/integration/recordings/responses/0b3f2e4754ff.json @@ -24,7 +24,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -39,7 +39,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254065, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -50,7 +50,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -65,7 +65,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254066, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -76,7 +76,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -91,7 +91,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254066, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -102,7 +102,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -117,7 +117,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254066, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -128,7 +128,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -143,7 +143,7 @@ "logprobs": null } ], - "created": 1756921334, + "created": 1759254066, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -154,7 +154,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -169,7 +169,7 @@ "logprobs": null } ], - "created": 1756921334, + "created": 1759254066, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -180,7 +180,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -195,7 +195,7 @@ "logprobs": null } ], - "created": 1756921334, + "created": 1759254067, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -206,7 +206,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-414", + "id": "chatcmpl-106", "choices": [ { "delta": { @@ -221,7 +221,7 @@ "logprobs": null } ], - "created": 1756921334, + "created": 1759254067, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/173ecb3aab28.json b/tests/integration/recordings/responses/173ecb3aab28.json index 0c29b278b9..83f58a36d6 100644 --- a/tests/integration/recordings/responses/173ecb3aab28.json +++ b/tests/integration/recordings/responses/173ecb3aab28.json @@ -40,7 +40,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -55,7 +55,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253815, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -66,7 +66,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -81,7 +81,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253815, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -92,7 +92,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -107,7 +107,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253815, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -118,7 +118,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -133,7 +133,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253816, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -144,7 +144,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -159,7 +159,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253816, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -170,7 +170,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -185,7 +185,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253816, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -196,7 +196,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -211,7 +211,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253816, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -222,7 +222,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-921", + "id": "chatcmpl-629", "choices": [ { "delta": { @@ -237,7 +237,7 @@ "logprobs": null } ], - "created": 1756920971, + "created": 1759253816, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/1a4da7c94fde.json b/tests/integration/recordings/responses/1a4da7c94fde.json index 4b3fb8fb6a..ca24f20d25 100644 --- a/tests/integration/recordings/responses/1a4da7c94fde.json +++ b/tests/integration/recordings/responses/1a4da7c94fde.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-438", + "id": "chatcmpl-478", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245073, + "created": 1759282396, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/2afe3b38ca01.json b/tests/integration/recordings/responses/2afe3b38ca01.json index 270d2744ca..a1cb871ffc 100644 --- a/tests/integration/recordings/responses/2afe3b38ca01.json +++ b/tests/integration/recordings/responses/2afe3b38ca01.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.436472Z", + "created_at": "2025-10-01T01:34:06.144961341Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.478138Z", + "created_at": "2025-10-01T01:34:06.3373667Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.519952Z", + "created_at": "2025-10-01T01:34:06.532942727Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.561433Z", + "created_at": "2025-10-01T01:34:06.728352251Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.603624Z", + "created_at": "2025-10-01T01:34:06.924985367Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.645851Z", + "created_at": "2025-10-01T01:34:07.121349528Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.688403Z", + "created_at": "2025-10-01T01:34:07.318123626Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.72991Z", + "created_at": "2025-10-01T01:34:07.51621183Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.771635Z", + "created_at": "2025-10-01T01:34:07.715339999Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.813711Z", + "created_at": "2025-10-01T01:34:07.911837801Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.856201Z", + "created_at": "2025-10-01T01:34:08.111752821Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.899048Z", + "created_at": "2025-10-01T01:34:08.31294106Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:50.94069Z", + "created_at": "2025-10-01T01:34:08.520937013Z", "done": true, "done_reason": "stop", - "total_duration": 688370708, - "load_duration": 107469833, + "total_duration": 4447759914, + "load_duration": 44225114, "prompt_eval_count": 399, - "prompt_eval_duration": 74988334, + "prompt_eval_duration": 2025476521, "eval_count": 13, - "eval_duration": 505216458, + "eval_duration": 2377545768, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/2d187a11704c.json b/tests/integration/recordings/responses/2d187a11704c.json index c0f746ffef..ecce0ec80f 100644 --- a/tests/integration/recordings/responses/2d187a11704c.json +++ b/tests/integration/recordings/responses/2d187a11704c.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.566151Z", + "created_at": "2025-10-01T01:35:11.444139198Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.609308Z", + "created_at": "2025-10-01T01:35:11.631417419Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.651314Z", + "created_at": "2025-10-01T01:35:11.837785952Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.693185Z", + "created_at": "2025-10-01T01:35:12.035361735Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.734643Z", + "created_at": "2025-10-01T01:35:12.231459021Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.776343Z", + "created_at": "2025-10-01T01:35:12.437587336Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.81705Z", + "created_at": "2025-10-01T01:35:12.645814233Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.857959Z", + "created_at": "2025-10-01T01:35:12.857399802Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.899424Z", + "created_at": "2025-10-01T01:35:13.069748955Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.939218Z", + "created_at": "2025-10-01T01:35:13.275446646Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:56.980065Z", + "created_at": "2025-10-01T01:35:13.472121232Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.02214Z", + "created_at": "2025-10-01T01:35:13.665744046Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.0628Z", + "created_at": "2025-10-01T01:35:13.861581737Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.106061Z", + "created_at": "2025-10-01T01:35:14.057543582Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.1492Z", + "created_at": "2025-10-01T01:35:14.250235864Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.190075Z", + "created_at": "2025-10-01T01:35:14.440950519Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.23178Z", + "created_at": "2025-10-01T01:35:14.633159237Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.272738Z", + "created_at": "2025-10-01T01:35:14.824645544Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,7 +346,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.313855Z", + "created_at": "2025-10-01T01:35:15.015421713Z", "done": false, "done_reason": null, "total_duration": null, @@ -364,7 +364,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.354964Z", + "created_at": "2025-10-01T01:35:15.21010827Z", "done": false, "done_reason": null, "total_duration": null, @@ -382,7 +382,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.395971Z", + "created_at": "2025-10-01T01:35:15.406911964Z", "done": false, "done_reason": null, "total_duration": null, @@ -400,7 +400,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.438471Z", + "created_at": "2025-10-01T01:35:15.599086606Z", "done": false, "done_reason": null, "total_duration": null, @@ -418,7 +418,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.479796Z", + "created_at": "2025-10-01T01:35:15.789596143Z", "done": false, "done_reason": null, "total_duration": null, @@ -436,7 +436,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.520641Z", + "created_at": "2025-10-01T01:35:15.981551476Z", "done": false, "done_reason": null, "total_duration": null, @@ -454,7 +454,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.561511Z", + "created_at": "2025-10-01T01:35:16.170823008Z", "done": false, "done_reason": null, "total_duration": null, @@ -472,7 +472,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.602875Z", + "created_at": "2025-10-01T01:35:16.361099362Z", "done": false, "done_reason": null, "total_duration": null, @@ -490,7 +490,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.643406Z", + "created_at": "2025-10-01T01:35:16.554187248Z", "done": false, "done_reason": null, "total_duration": null, @@ -508,7 +508,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.684279Z", + "created_at": "2025-10-01T01:35:16.746364193Z", "done": false, "done_reason": null, "total_duration": null, @@ -526,7 +526,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.725699Z", + "created_at": "2025-10-01T01:35:16.937784556Z", "done": false, "done_reason": null, "total_duration": null, @@ -544,7 +544,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.766658Z", + "created_at": "2025-10-01T01:35:17.130739694Z", "done": false, "done_reason": null, "total_duration": null, @@ -562,7 +562,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.80738Z", + "created_at": "2025-10-01T01:35:17.324485154Z", "done": false, "done_reason": null, "total_duration": null, @@ -580,7 +580,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.848466Z", + "created_at": "2025-10-01T01:35:17.513221988Z", "done": false, "done_reason": null, "total_duration": null, @@ -598,7 +598,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.889056Z", + "created_at": "2025-10-01T01:35:17.704588587Z", "done": false, "done_reason": null, "total_duration": null, @@ -616,7 +616,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.931554Z", + "created_at": "2025-10-01T01:35:17.89491876Z", "done": false, "done_reason": null, "total_duration": null, @@ -634,7 +634,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:57.974754Z", + "created_at": "2025-10-01T01:35:18.085415685Z", "done": false, "done_reason": null, "total_duration": null, @@ -652,7 +652,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.016978Z", + "created_at": "2025-10-01T01:35:18.291123534Z", "done": false, "done_reason": null, "total_duration": null, @@ -670,7 +670,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.057942Z", + "created_at": "2025-10-01T01:35:18.481091772Z", "done": false, "done_reason": null, "total_duration": null, @@ -688,7 +688,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.099015Z", + "created_at": "2025-10-01T01:35:18.669330853Z", "done": false, "done_reason": null, "total_duration": null, @@ -706,7 +706,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.140531Z", + "created_at": "2025-10-01T01:35:18.862203802Z", "done": false, "done_reason": null, "total_duration": null, @@ -724,7 +724,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.181382Z", + "created_at": "2025-10-01T01:35:19.050586441Z", "done": false, "done_reason": null, "total_duration": null, @@ -742,7 +742,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.223318Z", + "created_at": "2025-10-01T01:35:19.243400941Z", "done": false, "done_reason": null, "total_duration": null, @@ -760,7 +760,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.26358Z", + "created_at": "2025-10-01T01:35:19.438492404Z", "done": false, "done_reason": null, "total_duration": null, @@ -778,7 +778,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.305496Z", + "created_at": "2025-10-01T01:35:19.625091169Z", "done": false, "done_reason": null, "total_duration": null, @@ -796,7 +796,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.347254Z", + "created_at": "2025-10-01T01:35:19.817882725Z", "done": false, "done_reason": null, "total_duration": null, @@ -814,7 +814,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.390044Z", + "created_at": "2025-10-01T01:35:20.006228518Z", "done": false, "done_reason": null, "total_duration": null, @@ -832,7 +832,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.430867Z", + "created_at": "2025-10-01T01:35:20.195451511Z", "done": false, "done_reason": null, "total_duration": null, @@ -850,7 +850,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.471376Z", + "created_at": "2025-10-01T01:35:20.38583856Z", "done": false, "done_reason": null, "total_duration": null, @@ -868,7 +868,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.51208Z", + "created_at": "2025-10-01T01:35:20.574736342Z", "done": false, "done_reason": null, "total_duration": null, @@ -886,7 +886,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.553226Z", + "created_at": "2025-10-01T01:35:20.770260046Z", "done": false, "done_reason": null, "total_duration": null, @@ -904,7 +904,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.594787Z", + "created_at": "2025-10-01T01:35:20.961391185Z", "done": false, "done_reason": null, "total_duration": null, @@ -922,7 +922,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.63466Z", + "created_at": "2025-10-01T01:35:21.15136915Z", "done": false, "done_reason": null, "total_duration": null, @@ -940,7 +940,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.674628Z", + "created_at": "2025-10-01T01:35:21.34012064Z", "done": false, "done_reason": null, "total_duration": null, @@ -958,7 +958,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.714616Z", + "created_at": "2025-10-01T01:35:21.530394237Z", "done": false, "done_reason": null, "total_duration": null, @@ -976,7 +976,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.754906Z", + "created_at": "2025-10-01T01:35:21.721043618Z", "done": false, "done_reason": null, "total_duration": null, @@ -994,7 +994,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.795048Z", + "created_at": "2025-10-01T01:35:21.911611623Z", "done": false, "done_reason": null, "total_duration": null, @@ -1012,7 +1012,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.835297Z", + "created_at": "2025-10-01T01:35:22.100940877Z", "done": false, "done_reason": null, "total_duration": null, @@ -1030,7 +1030,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.875738Z", + "created_at": "2025-10-01T01:35:22.289910353Z", "done": false, "done_reason": null, "total_duration": null, @@ -1048,7 +1048,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.91604Z", + "created_at": "2025-10-01T01:35:22.476827205Z", "done": false, "done_reason": null, "total_duration": null, @@ -1066,7 +1066,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.956596Z", + "created_at": "2025-10-01T01:35:22.663529325Z", "done": false, "done_reason": null, "total_duration": null, @@ -1084,7 +1084,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:58.996664Z", + "created_at": "2025-10-01T01:35:22.851128482Z", "done": false, "done_reason": null, "total_duration": null, @@ -1102,7 +1102,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.037796Z", + "created_at": "2025-10-01T01:35:23.042424694Z", "done": false, "done_reason": null, "total_duration": null, @@ -1120,7 +1120,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.078586Z", + "created_at": "2025-10-01T01:35:23.234415016Z", "done": false, "done_reason": null, "total_duration": null, @@ -1138,7 +1138,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.119448Z", + "created_at": "2025-10-01T01:35:23.422767727Z", "done": false, "done_reason": null, "total_duration": null, @@ -1156,7 +1156,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.160318Z", + "created_at": "2025-10-01T01:35:23.611953916Z", "done": false, "done_reason": null, "total_duration": null, @@ -1174,7 +1174,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.201852Z", + "created_at": "2025-10-01T01:35:23.802138602Z", "done": false, "done_reason": null, "total_duration": null, @@ -1192,7 +1192,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.243763Z", + "created_at": "2025-10-01T01:35:23.993446989Z", "done": false, "done_reason": null, "total_duration": null, @@ -1210,7 +1210,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.284948Z", + "created_at": "2025-10-01T01:35:24.186705934Z", "done": false, "done_reason": null, "total_duration": null, @@ -1228,7 +1228,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.325598Z", + "created_at": "2025-10-01T01:35:24.39236955Z", "done": false, "done_reason": null, "total_duration": null, @@ -1246,7 +1246,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.366289Z", + "created_at": "2025-10-01T01:35:24.579916625Z", "done": false, "done_reason": null, "total_duration": null, @@ -1264,7 +1264,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.406764Z", + "created_at": "2025-10-01T01:35:24.768821839Z", "done": false, "done_reason": null, "total_duration": null, @@ -1282,7 +1282,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.447922Z", + "created_at": "2025-10-01T01:35:24.957792215Z", "done": false, "done_reason": null, "total_duration": null, @@ -1300,7 +1300,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.488486Z", + "created_at": "2025-10-01T01:35:25.147895529Z", "done": false, "done_reason": null, "total_duration": null, @@ -1318,7 +1318,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.529Z", + "created_at": "2025-10-01T01:35:25.337348777Z", "done": false, "done_reason": null, "total_duration": null, @@ -1336,7 +1336,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.569417Z", + "created_at": "2025-10-01T01:35:25.528043056Z", "done": false, "done_reason": null, "total_duration": null, @@ -1354,7 +1354,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.610542Z", + "created_at": "2025-10-01T01:35:25.720598024Z", "done": false, "done_reason": null, "total_duration": null, @@ -1372,7 +1372,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.651411Z", + "created_at": "2025-10-01T01:35:25.908813849Z", "done": false, "done_reason": null, "total_duration": null, @@ -1390,7 +1390,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.69241Z", + "created_at": "2025-10-01T01:35:26.102538985Z", "done": false, "done_reason": null, "total_duration": null, @@ -1408,7 +1408,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.732339Z", + "created_at": "2025-10-01T01:35:26.296587284Z", "done": false, "done_reason": null, "total_duration": null, @@ -1426,7 +1426,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.772462Z", + "created_at": "2025-10-01T01:35:26.48997969Z", "done": false, "done_reason": null, "total_duration": null, @@ -1444,7 +1444,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.812507Z", + "created_at": "2025-10-01T01:35:26.68461717Z", "done": false, "done_reason": null, "total_duration": null, @@ -1462,7 +1462,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.852762Z", + "created_at": "2025-10-01T01:35:26.877976002Z", "done": false, "done_reason": null, "total_duration": null, @@ -1480,7 +1480,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.892984Z", + "created_at": "2025-10-01T01:35:27.071304424Z", "done": false, "done_reason": null, "total_duration": null, @@ -1498,7 +1498,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.933555Z", + "created_at": "2025-10-01T01:35:27.267083009Z", "done": false, "done_reason": null, "total_duration": null, @@ -1516,7 +1516,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:59.973778Z", + "created_at": "2025-10-01T01:35:27.458752902Z", "done": false, "done_reason": null, "total_duration": null, @@ -1534,7 +1534,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.014923Z", + "created_at": "2025-10-01T01:35:27.651757232Z", "done": false, "done_reason": null, "total_duration": null, @@ -1552,7 +1552,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.057464Z", + "created_at": "2025-10-01T01:35:27.84093711Z", "done": false, "done_reason": null, "total_duration": null, @@ -1570,7 +1570,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.09902Z", + "created_at": "2025-10-01T01:35:28.031166547Z", "done": false, "done_reason": null, "total_duration": null, @@ -1588,7 +1588,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.140492Z", + "created_at": "2025-10-01T01:35:28.222014814Z", "done": false, "done_reason": null, "total_duration": null, @@ -1606,7 +1606,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.180239Z", + "created_at": "2025-10-01T01:35:28.412024854Z", "done": false, "done_reason": null, "total_duration": null, @@ -1624,7 +1624,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.220364Z", + "created_at": "2025-10-01T01:35:28.603242201Z", "done": false, "done_reason": null, "total_duration": null, @@ -1642,7 +1642,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.26097Z", + "created_at": "2025-10-01T01:35:28.793015428Z", "done": false, "done_reason": null, "total_duration": null, @@ -1660,7 +1660,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.301228Z", + "created_at": "2025-10-01T01:35:28.98105341Z", "done": false, "done_reason": null, "total_duration": null, @@ -1678,7 +1678,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.341631Z", + "created_at": "2025-10-01T01:35:29.171562052Z", "done": false, "done_reason": null, "total_duration": null, @@ -1696,7 +1696,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.383006Z", + "created_at": "2025-10-01T01:35:29.359960218Z", "done": false, "done_reason": null, "total_duration": null, @@ -1714,7 +1714,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.423509Z", + "created_at": "2025-10-01T01:35:29.547663965Z", "done": false, "done_reason": null, "total_duration": null, @@ -1732,7 +1732,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.464702Z", + "created_at": "2025-10-01T01:35:29.737967784Z", "done": false, "done_reason": null, "total_duration": null, @@ -1750,7 +1750,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.505914Z", + "created_at": "2025-10-01T01:35:29.926196503Z", "done": false, "done_reason": null, "total_duration": null, @@ -1768,7 +1768,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.546505Z", + "created_at": "2025-10-01T01:35:30.117904197Z", "done": false, "done_reason": null, "total_duration": null, @@ -1786,7 +1786,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.587839Z", + "created_at": "2025-10-01T01:35:30.309146475Z", "done": false, "done_reason": null, "total_duration": null, @@ -1804,15 +1804,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:00.629018Z", + "created_at": "2025-10-01T01:35:30.497677975Z", "done": true, "done_reason": "stop", - "total_duration": 4303339291, - "load_duration": 156231250, + "total_duration": 21228194411, + "load_duration": 46730034, "prompt_eval_count": 36, - "prompt_eval_duration": 81909875, + "prompt_eval_duration": 2125755306, "eval_count": 100, - "eval_duration": 4064559292, + "eval_duration": 19055134812, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/37706c1729ba.json b/tests/integration/recordings/responses/37706c1729ba.json index 256e0c37e0..74caaadf18 100644 --- a/tests/integration/recordings/responses/37706c1729ba.json +++ b/tests/integration/recordings/responses/37706c1729ba.json @@ -38,7 +38,7 @@ } } ], - "created": 1759245080, + "created": 1759282470, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/4ebf08272d17.json b/tests/integration/recordings/responses/4ebf08272d17.json index 958d3ad9ce..87cd4f5ca4 100644 --- a/tests/integration/recordings/responses/4ebf08272d17.json +++ b/tests/integration/recordings/responses/4ebf08272d17.json @@ -21,7 +21,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -36,7 +36,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282604, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -47,7 +47,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -62,7 +62,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282605, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -73,7 +73,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -88,7 +88,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282605, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -99,7 +99,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -114,7 +114,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282605, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -125,7 +125,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -140,7 +140,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282605, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -151,7 +151,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -166,7 +166,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282605, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -177,7 +177,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -192,7 +192,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282606, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -203,7 +203,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -218,7 +218,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282606, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -229,7 +229,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -244,7 +244,7 @@ "logprobs": null } ], - "created": 1759267476, + "created": 1759282606, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -255,7 +255,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -270,7 +270,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282606, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -281,7 +281,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -296,7 +296,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282606, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -307,7 +307,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -322,7 +322,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282607, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -333,7 +333,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -348,7 +348,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282607, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -359,7 +359,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -374,7 +374,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282607, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -385,7 +385,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -400,7 +400,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282607, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -411,11 +411,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " suggest", + "content": " give", "function_call": null, "refusal": null, "role": "assistant", @@ -426,7 +426,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -437,11 +437,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " some", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -452,7 +452,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -463,11 +463,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " ways", + "content": " an", "function_call": null, "refusal": null, "role": "assistant", @@ -478,7 +478,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -489,11 +489,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " for", + "content": " overview", "function_call": null, "refusal": null, "role": "assistant", @@ -504,7 +504,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -515,11 +515,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " you", + "content": " of", "function_call": null, "refusal": null, "role": "assistant", @@ -530,7 +530,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -541,11 +541,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " to", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -556,7 +556,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282608, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -567,11 +567,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " find", + "content": "'s", "function_call": null, "refusal": null, "role": "assistant", @@ -582,7 +582,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282609, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -593,11 +593,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " out", + "content": " typical", "function_call": null, "refusal": null, "role": "assistant", @@ -608,7 +608,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282609, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -619,11 +619,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " the", + "content": " climate", "function_call": null, "refusal": null, "role": "assistant", @@ -634,7 +634,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282609, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -645,11 +645,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " current", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -660,7 +660,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282609, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -671,11 +671,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " weather", + "content": " suggest", "function_call": null, "refusal": null, "role": "assistant", @@ -686,7 +686,7 @@ "logprobs": null } ], - "created": 1759267477, + "created": 1759282609, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -697,11 +697,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " in", + "content": " some", "function_call": null, "refusal": null, "role": "assistant", @@ -712,7 +712,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282610, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -723,11 +723,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Tokyo", + "content": " resources", "function_call": null, "refusal": null, "role": "assistant", @@ -738,7 +738,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282610, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -749,11 +749,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ":\n\n", + "content": " where", "function_call": null, "refusal": null, "role": "assistant", @@ -764,7 +764,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282610, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -775,11 +775,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "1", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -790,7 +790,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282610, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -801,11 +801,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -816,7 +816,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282610, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -827,11 +827,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Check", + "content": " find", "function_call": null, "refusal": null, "role": "assistant", @@ -842,7 +842,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282611, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -853,11 +853,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " online", + "content": " up", "function_call": null, "refusal": null, "role": "assistant", @@ -868,7 +868,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282611, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -879,11 +879,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " weather", + "content": "-to", "function_call": null, "refusal": null, "role": "assistant", @@ -894,7 +894,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282611, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -905,11 +905,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " websites", + "content": "-date", "function_call": null, "refusal": null, "role": "assistant", @@ -920,7 +920,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282611, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -931,11 +931,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ":", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -946,7 +946,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282611, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -957,11 +957,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " You", + "content": " forecasts", "function_call": null, "refusal": null, "role": "assistant", @@ -972,7 +972,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282612, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -983,11 +983,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " can", + "content": ".\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -998,7 +998,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282612, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1009,11 +1009,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " check", + "content": "Tok", "function_call": null, "refusal": null, "role": "assistant", @@ -1024,7 +1024,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282612, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1035,11 +1035,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " websites", + "content": "yo", "function_call": null, "refusal": null, "role": "assistant", @@ -1050,7 +1050,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282612, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1061,11 +1061,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " like", + "content": " has", "function_call": null, "refusal": null, "role": "assistant", @@ -1076,7 +1076,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282613, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1087,11 +1087,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Acc", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -1102,7 +1102,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282613, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1113,11 +1113,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "u", + "content": " humid", "function_call": null, "refusal": null, "role": "assistant", @@ -1128,7 +1128,7 @@ "logprobs": null } ], - "created": 1759267478, + "created": 1759282613, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1139,11 +1139,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "Weather", + "content": " subt", "function_call": null, "refusal": null, "role": "assistant", @@ -1154,7 +1154,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282613, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1165,11 +1165,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": "ropical", "function_call": null, "refusal": null, "role": "assistant", @@ -1180,7 +1180,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282613, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1191,11 +1191,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Weather", + "content": " climate", "function_call": null, "refusal": null, "role": "assistant", @@ -1206,7 +1206,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1217,11 +1217,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".com", + "content": " with", "function_call": null, "refusal": null, "role": "assistant", @@ -1232,7 +1232,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1243,11 +1243,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " four", "function_call": null, "refusal": null, "role": "assistant", @@ -1258,7 +1258,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1269,11 +1269,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " or", + "content": " distinct", "function_call": null, "refusal": null, "role": "assistant", @@ -1284,7 +1284,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1295,11 +1295,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Japan", + "content": " seasons", "function_call": null, "refusal": null, "role": "assistant", @@ -1310,7 +1310,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1321,11 +1321,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Meteor", + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -1336,7 +1336,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282614, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1347,11 +1347,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "ological", + "content": " Here", "function_call": null, "refusal": null, "role": "assistant", @@ -1362,7 +1362,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282615, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1373,11 +1373,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Agency", + "content": "'s", "function_call": null, "refusal": null, "role": "assistant", @@ -1388,7 +1388,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282615, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1399,11 +1399,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -1414,7 +1414,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282615, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1425,11 +1425,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "J", + "content": " general", "function_call": null, "refusal": null, "role": "assistant", @@ -1440,7 +1440,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282615, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1451,11 +1451,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "MA", + "content": " idea", "function_call": null, "refusal": null, "role": "assistant", @@ -1466,7 +1466,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1477,11 +1477,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ")", + "content": " of", "function_call": null, "refusal": null, "role": "assistant", @@ -1492,7 +1492,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1503,11 +1503,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " for", + "content": " what", "function_call": null, "refusal": null, "role": "assistant", @@ -1518,7 +1518,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1529,11 +1529,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " the", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -1544,7 +1544,7 @@ "logprobs": null } ], - "created": 1759267479, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1555,11 +1555,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " current", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -1570,7 +1570,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1581,11 +1581,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " weather", + "content": " expect", "function_call": null, "refusal": null, "role": "assistant", @@ -1596,7 +1596,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282616, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1607,11 +1607,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " conditions", + "content": ":\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -1622,7 +1622,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282617, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1633,11 +1633,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " and", + "content": "*", "function_call": null, "refusal": null, "role": "assistant", @@ -1648,7 +1648,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282617, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1659,11 +1659,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " forecast", + "content": " Spring", "function_call": null, "refusal": null, "role": "assistant", @@ -1674,7 +1674,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282617, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1685,11 +1685,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " in", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -1700,7 +1700,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282617, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1711,11 +1711,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Tokyo", + "content": "March", "function_call": null, "refusal": null, "role": "assistant", @@ -1726,7 +1726,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282617, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1737,11 +1737,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".\n", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -1752,7 +1752,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282618, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1763,11 +1763,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "2", + "content": " May", "function_call": null, "refusal": null, "role": "assistant", @@ -1778,7 +1778,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282618, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1789,11 +1789,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".", + "content": "):", "function_call": null, "refusal": null, "role": "assistant", @@ -1804,7 +1804,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282618, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1815,11 +1815,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Use", + "content": " Mild", "function_call": null, "refusal": null, "role": "assistant", @@ -1830,7 +1830,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282618, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1841,11 +1841,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " a", + "content": " temperatures", "function_call": null, "refusal": null, "role": "assistant", @@ -1856,7 +1856,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282618, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1867,11 +1867,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " mobile", + "content": " ranging", "function_call": null, "refusal": null, "role": "assistant", @@ -1882,7 +1882,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282619, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1893,11 +1893,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " app", + "content": " from", "function_call": null, "refusal": null, "role": "assistant", @@ -1908,7 +1908,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282619, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1919,11 +1919,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ":", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -1934,7 +1934,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282619, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1945,11 +1945,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " There", + "content": "10", "function_call": null, "refusal": null, "role": "assistant", @@ -1960,7 +1960,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282619, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1971,11 +1971,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " are", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -1986,7 +1986,7 @@ "logprobs": null } ], - "created": 1759267480, + "created": 1759282619, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1997,11 +1997,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " many", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -2012,7 +2012,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282620, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2023,11 +2023,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " mobile", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -2038,7 +2038,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282620, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2049,11 +2049,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " apps", + "content": "20", "function_call": null, "refusal": null, "role": "assistant", @@ -2064,7 +2064,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282620, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2075,11 +2075,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " available", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -2090,7 +2090,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282620, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2101,11 +2101,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " that", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -2116,7 +2116,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282620, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2127,11 +2127,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " provide", + "content": "50", "function_call": null, "refusal": null, "role": "assistant", @@ -2142,7 +2142,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282621, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2153,11 +2153,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " real", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -2168,7 +2168,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282621, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2179,11 +2179,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "-time", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -2194,7 +2194,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282621, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2205,11 +2205,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " weather", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -2220,7 +2220,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282621, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2231,11 +2231,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " information", + "content": "68", "function_call": null, "refusal": null, "role": "assistant", @@ -2246,7 +2246,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282621, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2257,11 +2257,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -2272,7 +2272,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282622, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2283,11 +2283,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " such", + "content": ").", "function_call": null, "refusal": null, "role": "assistant", @@ -2298,7 +2298,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282622, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2309,11 +2309,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " as", + "content": " Cherry", "function_call": null, "refusal": null, "role": "assistant", @@ -2324,7 +2324,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282622, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2335,11 +2335,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Dark", + "content": " bloss", "function_call": null, "refusal": null, "role": "assistant", @@ -2350,7 +2350,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282622, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2361,11 +2361,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Sky", + "content": "oms", "function_call": null, "refusal": null, "role": "assistant", @@ -2376,7 +2376,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282622, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2387,11 +2387,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " bloom", "function_call": null, "refusal": null, "role": "assistant", @@ -2402,7 +2402,7 @@ "logprobs": null } ], - "created": 1759267481, + "created": 1759282623, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2413,11 +2413,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Weather", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -2428,7 +2428,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282623, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2439,11 +2439,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Underground", + "content": " late", "function_call": null, "refusal": null, "role": "assistant", @@ -2454,7 +2454,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282623, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2465,11 +2465,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " March", "function_call": null, "refusal": null, "role": "assistant", @@ -2480,7 +2480,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282623, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2491,11 +2491,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " or", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -2506,7 +2506,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282623, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2517,11 +2517,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Japan", + "content": " early", "function_call": null, "refusal": null, "role": "assistant", @@ -2532,7 +2532,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282624, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2543,11 +2543,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "-based", + "content": " April", "function_call": null, "refusal": null, "role": "assistant", @@ -2558,7 +2558,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282624, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2569,11 +2569,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " apps", + "content": ".\n", "function_call": null, "refusal": null, "role": "assistant", @@ -2584,7 +2584,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282624, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2595,11 +2595,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " like", + "content": "*", "function_call": null, "refusal": null, "role": "assistant", @@ -2610,7 +2610,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282624, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2621,11 +2621,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Japan", + "content": " Summer", "function_call": null, "refusal": null, "role": "assistant", @@ -2636,7 +2636,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282624, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2647,11 +2647,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Meteor", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -2662,7 +2662,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282625, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2673,11 +2673,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "ological", + "content": "June", "function_call": null, "refusal": null, "role": "assistant", @@ -2688,7 +2688,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282625, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2699,11 +2699,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Corporation", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -2714,7 +2714,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282625, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2725,11 +2725,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "'s", + "content": " August", "function_call": null, "refusal": null, "role": "assistant", @@ -2740,7 +2740,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282625, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2751,11 +2751,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": "):", "function_call": null, "refusal": null, "role": "assistant", @@ -2766,7 +2766,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282625, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2777,11 +2777,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "JM", + "content": " Hot", "function_call": null, "refusal": null, "role": "assistant", @@ -2792,7 +2792,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282626, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2803,11 +2803,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "Cor", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -2818,7 +2818,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282626, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2829,11 +2829,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "ps", + "content": " humid", "function_call": null, "refusal": null, "role": "assistant", @@ -2844,7 +2844,7 @@ "logprobs": null } ], - "created": 1759267482, + "created": 1759282626, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2855,11 +2855,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ")", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -2870,7 +2870,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282626, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2881,11 +2881,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Weather", + "content": " with", "function_call": null, "refusal": null, "role": "assistant", @@ -2896,7 +2896,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282626, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2907,11 +2907,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " App", + "content": " average", "function_call": null, "refusal": null, "role": "assistant", @@ -2922,7 +2922,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282627, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2933,11 +2933,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".\n", + "content": " highs", "function_call": null, "refusal": null, "role": "assistant", @@ -2948,7 +2948,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282627, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2959,11 +2959,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "3", + "content": " around", "function_call": null, "refusal": null, "role": "assistant", @@ -2974,7 +2974,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282627, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2985,11 +2985,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -3000,7 +3000,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282627, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3011,11 +3011,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Check", + "content": "30", "function_call": null, "refusal": null, "role": "assistant", @@ -3026,7 +3026,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282627, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3037,11 +3037,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " social", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -3052,7 +3052,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282628, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3063,11 +3063,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " media", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -3078,7 +3078,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282628, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3089,11 +3089,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ":", + "content": "86", "function_call": null, "refusal": null, "role": "assistant", @@ -3104,7 +3104,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282628, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3115,11 +3115,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Many", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -3130,7 +3130,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282628, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3141,11 +3141,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " airlines", + "content": ").\n", "function_call": null, "refusal": null, "role": "assistant", @@ -3156,7 +3156,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282628, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3167,11 +3167,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": "*", "function_call": null, "refusal": null, "role": "assistant", @@ -3182,7 +3182,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282629, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3193,11 +3193,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " airports", + "content": " Autumn", "function_call": null, "refusal": null, "role": "assistant", @@ -3208,7 +3208,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282629, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3219,11 +3219,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -3234,7 +3234,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282629, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3245,11 +3245,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " and", + "content": "September", "function_call": null, "refusal": null, "role": "assistant", @@ -3260,7 +3260,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282629, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3271,11 +3271,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " tourist", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -3286,7 +3286,7 @@ "logprobs": null } ], - "created": 1759267483, + "created": 1759282629, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3297,11 +3297,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " attractions", + "content": " November", "function_call": null, "refusal": null, "role": "assistant", @@ -3312,7 +3312,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282630, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3323,11 +3323,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " also", + "content": "):", "function_call": null, "refusal": null, "role": "assistant", @@ -3338,7 +3338,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282630, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3349,11 +3349,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " share", + "content": " Comfort", "function_call": null, "refusal": null, "role": "assistant", @@ -3364,7 +3364,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282630, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3375,11 +3375,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " the", + "content": "able", "function_call": null, "refusal": null, "role": "assistant", @@ -3390,7 +3390,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282630, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3401,11 +3401,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " current", + "content": " temperatures", "function_call": null, "refusal": null, "role": "assistant", @@ -3416,7 +3416,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282630, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3427,11 +3427,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " weather", + "content": " between", "function_call": null, "refusal": null, "role": "assistant", @@ -3442,7 +3442,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282631, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3453,11 +3453,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " conditions", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -3468,7 +3468,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282631, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3479,11 +3479,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " on", + "content": "10", "function_call": null, "refusal": null, "role": "assistant", @@ -3494,7 +3494,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282631, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3505,11 +3505,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " their", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -3520,7 +3520,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282631, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3531,11 +3531,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " social", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -3546,7 +3546,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282631, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3557,11 +3557,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " media", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -3572,7 +3572,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282632, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3583,11 +3583,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " accounts", + "content": "20", "function_call": null, "refusal": null, "role": "assistant", @@ -3598,7 +3598,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282632, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3609,11 +3609,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ".\n\n", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -3624,7 +3624,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282632, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3635,11 +3635,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "Please", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -3650,7 +3650,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282632, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3661,11 +3661,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " note", + "content": "50", "function_call": null, "refusal": null, "role": "assistant", @@ -3676,7 +3676,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282632, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3687,11 +3687,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " that", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -3702,7 +3702,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282633, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3713,11 +3713,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Tokyo", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -3728,7 +3728,7 @@ "logprobs": null } ], - "created": 1759267484, + "created": 1759282633, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3739,11 +3739,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "'s", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -3754,7 +3754,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282633, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3765,11 +3765,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " climate", + "content": "68", "function_call": null, "refusal": null, "role": "assistant", @@ -3780,7 +3780,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282633, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3791,11 +3791,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " is", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -3806,7 +3806,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282633, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3817,11 +3817,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " humid", + "content": ").", "function_call": null, "refusal": null, "role": "assistant", @@ -3832,7 +3832,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282634, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3843,11 +3843,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " subt", + "content": " Leaves", "function_call": null, "refusal": null, "role": "assistant", @@ -3858,7 +3858,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282634, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3869,11 +3869,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "ropical", + "content": " change", "function_call": null, "refusal": null, "role": "assistant", @@ -3884,7 +3884,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282634, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3895,11 +3895,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " with", + "content": " colors", "function_call": null, "refusal": null, "role": "assistant", @@ -3910,7 +3910,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282634, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3921,11 +3921,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " four", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -3936,7 +3936,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282634, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3947,11 +3947,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " distinct", + "content": " October", "function_call": null, "refusal": null, "role": "assistant", @@ -3962,7 +3962,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282635, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3973,11 +3973,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " seasons", + "content": ".\n", "function_call": null, "refusal": null, "role": "assistant", @@ -3988,7 +3988,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282635, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3999,11 +3999,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ":\n\n", + "content": "*", "function_call": null, "refusal": null, "role": "assistant", @@ -4014,7 +4014,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282635, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4025,11 +4025,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "-", + "content": " Winter", "function_call": null, "refusal": null, "role": "assistant", @@ -4040,7 +4040,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282635, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4051,11 +4051,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Winter", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -4066,7 +4066,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282635, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4077,11 +4077,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": "December", "function_call": null, "refusal": null, "role": "assistant", @@ -4092,7 +4092,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282636, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4103,11 +4103,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "December", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -4118,7 +4118,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282636, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4129,11 +4129,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " to", + "content": " February", "function_call": null, "refusal": null, "role": "assistant", @@ -4144,7 +4144,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282636, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4155,11 +4155,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " February", + "content": "):", "function_call": null, "refusal": null, "role": "assistant", @@ -4170,7 +4170,7 @@ "logprobs": null } ], - "created": 1759267485, + "created": 1759282636, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4181,11 +4181,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "):", + "content": " Cool", "function_call": null, "refusal": null, "role": "assistant", @@ -4196,7 +4196,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282636, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4207,11 +4207,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Mild", + "content": " temperatures", "function_call": null, "refusal": null, "role": "assistant", @@ -4222,7 +4222,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282637, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4233,11 +4233,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " temperatures", + "content": " ranging", "function_call": null, "refusal": null, "role": "assistant", @@ -4248,7 +4248,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282637, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4259,11 +4259,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " from", "function_call": null, "refusal": null, "role": "assistant", @@ -4274,7 +4274,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282637, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4285,11 +4285,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " with", + "content": " -", "function_call": null, "refusal": null, "role": "assistant", @@ -4300,7 +4300,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282637, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4311,11 +4311,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " average", + "content": "5", "function_call": null, "refusal": null, "role": "assistant", @@ -4326,7 +4326,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282637, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4337,11 +4337,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " highs", + "content": "\u00b0C", "function_call": null, "refusal": null, "role": "assistant", @@ -4352,7 +4352,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4363,11 +4363,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " around", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -4378,7 +4378,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4389,7 +4389,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -4404,7 +4404,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4415,11 +4415,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "9", + "content": "10", "function_call": null, "refusal": null, "role": "assistant", @@ -4430,7 +4430,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4441,7 +4441,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -4456,7 +4456,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4467,7 +4467,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -4482,7 +4482,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282638, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4493,11 +4493,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "48", + "content": "23", "function_call": null, "refusal": null, "role": "assistant", @@ -4508,7 +4508,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282639, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4519,7 +4519,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -4534,7 +4534,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282639, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4545,11 +4545,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ")", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -4560,7 +4560,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282639, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4571,11 +4571,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " and", + "content": " ", "function_call": null, "refusal": null, "role": "assistant", @@ -4586,7 +4586,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282639, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4597,11 +4597,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " lows", + "content": "50", "function_call": null, "refusal": null, "role": "assistant", @@ -4612,7 +4612,7 @@ "logprobs": null } ], - "created": 1759267486, + "created": 1759282639, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4623,11 +4623,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " around", + "content": "\u00b0F", "function_call": null, "refusal": null, "role": "assistant", @@ -4638,7 +4638,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282640, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4649,11 +4649,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " -", + "content": ").\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -4664,7 +4664,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282640, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4675,11 +4675,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "2", + "content": "For", "function_call": null, "refusal": null, "role": "assistant", @@ -4690,7 +4690,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282640, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4701,11 +4701,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " more", "function_call": null, "refusal": null, "role": "assistant", @@ -4716,7 +4716,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282640, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4727,11 +4727,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": " accurate", "function_call": null, "refusal": null, "role": "assistant", @@ -4742,7 +4742,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282640, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4753,11 +4753,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "28", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -4768,7 +4768,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282641, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4779,11 +4779,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0F", + "content": " up", "function_call": null, "refusal": null, "role": "assistant", @@ -4794,7 +4794,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282641, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4805,11 +4805,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ").\n", + "content": "-to", "function_call": null, "refusal": null, "role": "assistant", @@ -4820,7 +4820,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282641, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4831,11 +4831,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "-", + "content": "-date", "function_call": null, "refusal": null, "role": "assistant", @@ -4846,7 +4846,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282641, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4857,11 +4857,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Spring", + "content": " information", "function_call": null, "refusal": null, "role": "assistant", @@ -4872,7 +4872,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282641, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4883,11 +4883,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -4898,7 +4898,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282642, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4909,11 +4909,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "March", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -4924,7 +4924,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282642, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4935,11 +4935,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " to", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -4950,7 +4950,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282642, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4961,11 +4961,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " May", + "content": " check", "function_call": null, "refusal": null, "role": "assistant", @@ -4976,7 +4976,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282642, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4987,11 +4987,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "):", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5002,7 +5002,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282642, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5013,11 +5013,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Cool", + "content": " following", "function_call": null, "refusal": null, "role": "assistant", @@ -5028,7 +5028,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282643, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5039,11 +5039,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " temperature", + "content": " resources", "function_call": null, "refusal": null, "role": "assistant", @@ -5054,7 +5054,7 @@ "logprobs": null } ], - "created": 1759267487, + "created": 1759282643, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5065,11 +5065,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": ":\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -5080,7 +5080,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282643, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5091,11 +5091,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " with", + "content": "1", "function_call": null, "refusal": null, "role": "assistant", @@ -5106,7 +5106,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282643, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5117,11 +5117,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " average", + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -5132,7 +5132,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282643, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5143,11 +5143,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " highs", + "content": " Japan", "function_call": null, "refusal": null, "role": "assistant", @@ -5158,7 +5158,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282644, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5169,11 +5169,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " around", + "content": " Meteor", "function_call": null, "refusal": null, "role": "assistant", @@ -5184,7 +5184,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282644, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5195,11 +5195,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " ", + "content": "ological", "function_call": null, "refusal": null, "role": "assistant", @@ -5210,7 +5210,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282644, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5221,11 +5221,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "18", + "content": " Agency", "function_call": null, "refusal": null, "role": "assistant", @@ -5236,7 +5236,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282644, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5247,11 +5247,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -5262,7 +5262,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282644, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5273,11 +5273,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": "J", "function_call": null, "refusal": null, "role": "assistant", @@ -5288,7 +5288,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282645, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5299,11 +5299,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "64", + "content": "MA", "function_call": null, "refusal": null, "role": "assistant", @@ -5314,7 +5314,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282645, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5325,11 +5325,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0F", + "content": "):", "function_call": null, "refusal": null, "role": "assistant", @@ -5340,7 +5340,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282645, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5351,11 +5351,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ")", + "content": " Provides", "function_call": null, "refusal": null, "role": "assistant", @@ -5366,7 +5366,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282645, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5377,11 +5377,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " and", + "content": " current", "function_call": null, "refusal": null, "role": "assistant", @@ -5392,7 +5392,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282645, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5403,11 +5403,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " lows", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -5418,7 +5418,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282646, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5429,11 +5429,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " around", + "content": " conditions", "function_call": null, "refusal": null, "role": "assistant", @@ -5444,7 +5444,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282646, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5455,11 +5455,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " ", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -5470,7 +5470,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282646, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5481,11 +5481,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "8", + "content": " forecasts", "function_call": null, "refusal": null, "role": "assistant", @@ -5496,7 +5496,7 @@ "logprobs": null } ], - "created": 1759267488, + "created": 1759282646, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5507,11 +5507,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " for", "function_call": null, "refusal": null, "role": "assistant", @@ -5522,7 +5522,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282646, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5533,11 +5533,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -5548,7 +5548,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282647, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5559,11 +5559,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "46", + "content": ".\n", "function_call": null, "refusal": null, "role": "assistant", @@ -5574,7 +5574,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282647, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5585,11 +5585,973 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "\u00b0F", + "content": "2", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282647, + "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-945", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282647, + "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-945", + "choices": [ + { + "delta": { + "content": " Acc", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282647, + "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-945", + "choices": [ + { + "delta": { + "content": "u", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282648, + "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-945", + "choices": [ + { + "delta": { + "content": "Weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282648, + "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-945", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282648, + "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-945", + "choices": [ + { + "delta": { + "content": " Offers", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282648, + "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-945", + "choices": [ + { + "delta": { + "content": " detailed", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282648, + "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-945", + "choices": [ + { + "delta": { + "content": " forecasts", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282649, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282649, + "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-945", + "choices": [ + { + "delta": { + "content": " including", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282649, + "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-945", + "choices": [ + { + "delta": { + "content": " current", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282649, + "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-945", + "choices": [ + { + "delta": { + "content": " temperature", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282649, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282650, + "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-945", + "choices": [ + { + "delta": { + "content": " humidity", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282650, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282650, + "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-945", + "choices": [ + { + "delta": { + "content": " wind", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282650, + "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-945", + "choices": [ + { + "delta": { + "content": " speed", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282650, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282651, + "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-945", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282651, + "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-945", + "choices": [ + { + "delta": { + "content": " precipitation", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282651, + "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-945", + "choices": [ + { + "delta": { + "content": " chances", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282651, + "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-945", + "choices": [ + { + "delta": { + "content": ".\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282651, + "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-945", + "choices": [ + { + "delta": { + "content": "3", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282652, + "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-945", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282652, + "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-945", + "choices": [ + { + "delta": { + "content": " Weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282652, + "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-945", + "choices": [ + { + "delta": { + "content": ".com", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282652, + "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-945", + "choices": [ + { + "delta": { + "content": ":", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282652, + "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-945", + "choices": [ + { + "delta": { + "content": " Features", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282653, + "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-945", + "choices": [ + { + "delta": { + "content": " real", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282653, + "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-945", + "choices": [ + { + "delta": { + "content": "-time", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282653, + "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-945", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282653, + "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-945", + "choices": [ + { + "delta": { + "content": " updates", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282653, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282654, + "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-945", + "choices": [ + { + "delta": { + "content": " forecasts", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282654, + "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-945", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282654, + "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-945", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282654, + "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-945", + "choices": [ + { + "delta": { + "content": " radar", "function_call": null, "refusal": null, "role": "assistant", @@ -5600,7 +6562,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282654, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5611,11 +6573,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ").\n", + "content": " imagery", "function_call": null, "refusal": null, "role": "assistant", @@ -5626,7 +6588,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282655, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5637,11 +6599,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "-", + "content": " for", "function_call": null, "refusal": null, "role": "assistant", @@ -5652,7 +6614,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282655, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5663,11 +6625,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Summer", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -5678,7 +6640,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282655, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5689,11 +6651,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " (", + "content": ".\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -5704,7 +6666,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282655, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5715,11 +6677,193 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "June", + "content": "Please", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282655, + "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-945", + "choices": [ + { + "delta": { + "content": " note", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282655, + "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-945", + "choices": [ + { + "delta": { + "content": " that", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282656, + "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-945", + "choices": [ + { + "delta": { + "content": " these", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282656, + "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-945", + "choices": [ + { + "delta": { + "content": " resources", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282656, + "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-945", + "choices": [ + { + "delta": { + "content": " might", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282656, + "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-945", + "choices": [ + { + "delta": { + "content": " require", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282657, + "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-945", + "choices": [ + { + "delta": { + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -5730,7 +6874,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282657, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5741,7 +6885,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -5756,7 +6900,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282657, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5767,11 +6911,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " August", + "content": " log", "function_call": null, "refusal": null, "role": "assistant", @@ -5782,7 +6926,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282657, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5793,11 +6937,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": "):", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -5808,7 +6952,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282657, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5819,11 +6963,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " Hot", + "content": " or", "function_call": null, "refusal": null, "role": "assistant", @@ -5834,7 +6978,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282658, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5845,11 +6989,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " and", + "content": " accept", "function_call": null, "refusal": null, "role": "assistant", @@ -5860,7 +7004,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282658, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5871,11 +7015,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " humid", + "content": " cookies", "function_call": null, "refusal": null, "role": "assistant", @@ -5886,7 +7030,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282658, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5897,11 +7041,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": ",", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -5912,7 +7056,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282658, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5923,11 +7067,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " with", + "content": " access", "function_call": null, "refusal": null, "role": "assistant", @@ -5938,7 +7082,7 @@ "logprobs": null } ], - "created": 1759267489, + "created": 1759282658, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5949,11 +7093,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " average", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5964,7 +7108,7 @@ "logprobs": null } ], - "created": 1759267490, + "created": 1759282659, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5975,11 +7119,89 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { - "content": " highs", + "content": " most", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282659, + "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-945", + "choices": [ + { + "delta": { + "content": " accurate", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282659, + "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-945", + "choices": [ + { + "delta": { + "content": " information", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282659, + "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-945", + "choices": [ + { + "delta": { + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -5990,7 +7212,7 @@ "logprobs": null } ], - "created": 1759267490, + "created": 1759282659, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -6001,7 +7223,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-359", + "id": "chatcmpl-945", "choices": [ { "delta": { @@ -6016,7 +7238,7 @@ "logprobs": null } ], - "created": 1759267490, + "created": 1759282660, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/50340cd4d253.json b/tests/integration/recordings/responses/50340cd4d253.json index 3101fa9d83..8ffa6e1246 100644 --- a/tests/integration/recordings/responses/50340cd4d253.json +++ b/tests/integration/recordings/responses/50340cd4d253.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:38:01.239743Z", + "created_at": "2025-09-30T17:39:23.766462922Z", "done": true, "done_reason": "stop", - "total_duration": 207264667, - "load_duration": 73437959, + "total_duration": 2859320770, + "load_duration": 60934847, "prompt_eval_count": 216, - "prompt_eval_duration": 121657333, + "prompt_eval_duration": 2749991822, "eval_count": 2, - "eval_duration": 11348417, + "eval_duration": 47816462, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/545d86510a80.json b/tests/integration/recordings/responses/545d86510a80.json index 7cd718d56c..e9d88a52a6 100644 --- a/tests/integration/recordings/responses/545d86510a80.json +++ b/tests/integration/recordings/responses/545d86510a80.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.625862Z", + "created_at": "2025-10-01T01:38:20.882299989Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.668885Z", + "created_at": "2025-10-01T01:38:21.078187004Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.710947Z", + "created_at": "2025-10-01T01:38:21.272715034Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.752286Z", + "created_at": "2025-10-01T01:38:21.469070891Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.793309Z", + "created_at": "2025-10-01T01:38:21.673266264Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.834578Z", + "created_at": "2025-10-01T01:38:21.873306711Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.876536Z", + "created_at": "2025-10-01T01:38:22.070968284Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.918807Z", + "created_at": "2025-10-01T01:38:22.269036335Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.960101Z", + "created_at": "2025-10-01T01:38:22.465488517Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:33.00196Z", + "created_at": "2025-10-01T01:38:22.658421677Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:33.043876Z", + "created_at": "2025-10-01T01:38:22.852187817Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:33.08756Z", + "created_at": "2025-10-01T01:38:23.049518191Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:33.12966Z", + "created_at": "2025-10-01T01:38:23.248955312Z", "done": true, "done_reason": "stop", - "total_duration": 648814958, - "load_duration": 75300875, + "total_duration": 4434138141, + "load_duration": 43018186, "prompt_eval_count": 408, - "prompt_eval_duration": 66740291, + "prompt_eval_duration": 2022594115, "eval_count": 13, - "eval_duration": 505313125, + "eval_duration": 2367937192, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/554de3cd986f.json b/tests/integration/recordings/responses/554de3cd986f.json index 7a359c50e0..0bcb5dd000 100644 --- a/tests/integration/recordings/responses/554de3cd986f.json +++ b/tests/integration/recordings/responses/554de3cd986f.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:51.805591Z", + "created_at": "2025-10-01T01:34:19.167396532Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:51.850067Z", + "created_at": "2025-10-01T01:34:19.362195218Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:51.892443Z", + "created_at": "2025-10-01T01:34:19.556896355Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:51.934364Z", + "created_at": "2025-10-01T01:34:19.752258848Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:51.978382Z", + "created_at": "2025-10-01T01:34:19.949688527Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.019332Z", + "created_at": "2025-10-01T01:34:20.145337065Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.060708Z", + "created_at": "2025-10-01T01:34:20.340739605Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.102717Z", + "created_at": "2025-10-01T01:34:20.539146761Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.143996Z", + "created_at": "2025-10-01T01:34:20.73590849Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.185479Z", + "created_at": "2025-10-01T01:34:20.930252877Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.227562Z", + "created_at": "2025-10-01T01:34:21.124432932Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.270178Z", + "created_at": "2025-10-01T01:34:21.332871735Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.31151Z", + "created_at": "2025-10-01T01:34:21.52851911Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.35278Z", + "created_at": "2025-10-01T01:34:21.724649778Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.393954Z", + "created_at": "2025-10-01T01:34:21.922353561Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.435238Z", + "created_at": "2025-10-01T01:34:22.117061137Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.476197Z", + "created_at": "2025-10-01T01:34:22.31230442Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.517914Z", + "created_at": "2025-10-01T01:34:22.506582272Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,15 +346,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:52.55904Z", + "created_at": "2025-10-01T01:34:22.702819703Z", "done": true, "done_reason": "stop", - "total_duration": 971882292, - "load_duration": 116634209, + "total_duration": 6447413112, + "load_duration": 45664730, "prompt_eval_count": 376, - "prompt_eval_duration": 99382958, + "prompt_eval_duration": 2864046437, "eval_count": 19, - "eval_duration": 755260750, + "eval_duration": 3537012183, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/5c8d7ada4919.json b/tests/integration/recordings/responses/5c8d7ada4919.json new file mode 100644 index 0000000000..775663c6c1 --- /dev/null +++ b/tests/integration/recordings/responses/5c8d7ada4919.json @@ -0,0 +1,101 @@ +{ + "request": { + "method": "POST", + "url": "http://0.0.0.0:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "what's the current time? You MUST call the `get_current_time` function to find out." + } + ], + "response_format": { + "type": "text" + }, + "stream": true, + "tools": [ + { + "type": "function", + "function": { + "type": "function", + "name": "get_current_time", + "description": "Get the current time", + "parameters": {}, + "strict": null + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-188", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": [ + { + "index": 0, + "id": "call_bij0w4gk", + "function": { + "arguments": "{}", + "name": "get_current_time" + }, + "type": "function" + } + ] + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759253831, + "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-188", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "tool_calls", + "index": 0, + "logprobs": null + } + ], + "created": 1759253831, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": null + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/6906a6e71988.json b/tests/integration/recordings/responses/6906a6e71988.json index 6574cab538..3e561b1834 100644 --- a/tests/integration/recordings/responses/6906a6e71988.json +++ b/tests/integration/recordings/responses/6906a6e71988.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:38:00.98692Z", + "created_at": "2025-09-30T17:39:20.866577556Z", "done": true, "done_reason": "stop", - "total_duration": 332473583, - "load_duration": 90611333, + "total_duration": 4350589762, + "load_duration": 53782244, "prompt_eval_count": 317, - "prompt_eval_duration": 229691000, + "prompt_eval_duration": 4243686737, "eval_count": 2, - "eval_duration": 11571291, + "eval_duration": 52523173, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6b3e593ad9b8.json b/tests/integration/recordings/responses/6b3e593ad9b8.json index 0165009cb7..e5a85eb3da 100644 --- a/tests/integration/recordings/responses/6b3e593ad9b8.json +++ b/tests/integration/recordings/responses/6b3e593ad9b8.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-738", + "id": "chatcmpl-819", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245079, + "created": 1759282466, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/6d35c91287e2.json b/tests/integration/recordings/responses/6d35c91287e2.json index a7af894e8c..6d38dd48b2 100644 --- a/tests/integration/recordings/responses/6d35c91287e2.json +++ b/tests/integration/recordings/responses/6d35c91287e2.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.549266Z", + "created_at": "2025-10-01T01:36:25.060343636Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.592203Z", + "created_at": "2025-10-01T01:36:25.261200569Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.63417Z", + "created_at": "2025-10-01T01:36:25.462791752Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.677268Z", + "created_at": "2025-10-01T01:36:25.660954264Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.719768Z", + "created_at": "2025-10-01T01:36:25.857710285Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.762204Z", + "created_at": "2025-10-01T01:36:26.055796043Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.80404Z", + "created_at": "2025-10-01T01:36:26.256947843Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.845678Z", + "created_at": "2025-10-01T01:36:26.454224889Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.887086Z", + "created_at": "2025-10-01T01:36:26.663146208Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.928422Z", + "created_at": "2025-10-01T01:36:26.878266227Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:03.969641Z", + "created_at": "2025-10-01T01:36:27.086618766Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.011212Z", + "created_at": "2025-10-01T01:36:27.28577576Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.052626Z", + "created_at": "2025-10-01T01:36:27.484586207Z", "done": true, "done_reason": "stop", - "total_duration": 731936583, - "load_duration": 147334791, + "total_duration": 4491434092, + "load_duration": 44110434, "prompt_eval_count": 417, - "prompt_eval_duration": 79443792, + "prompt_eval_duration": 2021505668, "eval_count": 13, - "eval_duration": 504352750, + "eval_duration": 2425224707, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6fbea1abca7c.json b/tests/integration/recordings/responses/6fbea1abca7c.json index c16fe12682..5b18a66f19 100644 --- a/tests/integration/recordings/responses/6fbea1abca7c.json +++ b/tests/integration/recordings/responses/6fbea1abca7c.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:01.89965Z", + "created_at": "2025-10-01T01:36:11.873171882Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:01.941253Z", + "created_at": "2025-10-01T01:36:12.073738984Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:01.982621Z", + "created_at": "2025-10-01T01:36:12.272476639Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.024144Z", + "created_at": "2025-10-01T01:36:12.469220325Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.065495Z", + "created_at": "2025-10-01T01:36:12.665965955Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.107529Z", + "created_at": "2025-10-01T01:36:12.860442987Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.149217Z", + "created_at": "2025-10-01T01:36:13.055440385Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.190357Z", + "created_at": "2025-10-01T01:36:13.25612888Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.231501Z", + "created_at": "2025-10-01T01:36:13.454322876Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.272546Z", + "created_at": "2025-10-01T01:36:13.651445403Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.313561Z", + "created_at": "2025-10-01T01:36:13.851107226Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.354563Z", + "created_at": "2025-10-01T01:36:14.048095911Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.395585Z", + "created_at": "2025-10-01T01:36:14.250994986Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.436854Z", + "created_at": "2025-10-01T01:36:14.454971706Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.47814Z", + "created_at": "2025-10-01T01:36:14.654349738Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.519661Z", + "created_at": "2025-10-01T01:36:14.851507509Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.561119Z", + "created_at": "2025-10-01T01:36:15.044987002Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.602821Z", + "created_at": "2025-10-01T01:36:15.246563515Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,15 +346,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:02.644633Z", + "created_at": "2025-10-01T01:36:15.447689838Z", "done": true, "done_reason": "stop", - "total_duration": 1375629459, - "load_duration": 94090250, + "total_duration": 35945660492, + "load_duration": 42881569, "prompt_eval_count": 386, - "prompt_eval_duration": 535119167, + "prompt_eval_duration": 32326727198, "eval_count": 19, - "eval_duration": 745684041, + "eval_duration": 3575452190, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6fe1d4fedf12.json b/tests/integration/recordings/responses/6fe1d4fedf12.json index 8fd079a858..d8dc4e4586 100644 --- a/tests/integration/recordings/responses/6fe1d4fedf12.json +++ b/tests/integration/recordings/responses/6fe1d4fedf12.json @@ -24,7 +24,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -39,7 +39,7 @@ "logprobs": null } ], - "created": 1756921324, + "created": 1759254026, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -50,687 +50,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "'m", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " not", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " able", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " to", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " provide", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " real", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": "-time", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " or", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " current", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " weather", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921324, - "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-358", - "choices": [ - { - "delta": { - "content": " information", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": ".", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " However", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": ",", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " I", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " can", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " tell", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " you", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " that", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " Tokyo", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " has", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " a", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " humid", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " subt", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": "ropical", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " climate", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921325, - "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-358", - "choices": [ - { - "delta": { - "content": " with", + "content": "'d", "function_call": null, "refusal": null, "role": "assistant", @@ -741,7 +65,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254026, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -752,11 +76,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " hot", + "content": " be", "function_call": null, "refusal": null, "role": "assistant", @@ -767,7 +91,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254027, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -778,11 +102,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " and", + "content": " happy", "function_call": null, "refusal": null, "role": "assistant", @@ -793,7 +117,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254027, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -804,11 +128,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " humid", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -819,7 +143,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254027, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -830,11 +154,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " summers", + "content": " help", "function_call": null, "refusal": null, "role": "assistant", @@ -845,7 +169,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254027, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -856,11 +180,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -871,7 +195,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254027, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -882,11 +206,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Here", + "content": " with", "function_call": null, "refusal": null, "role": "assistant", @@ -897,7 +221,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254028, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -908,11 +232,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "'s", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -923,7 +247,7 @@ "logprobs": null } ], - "created": 1756921325, + "created": 1759254028, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -934,11 +258,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " an", + "content": " latest", "function_call": null, "refusal": null, "role": "assistant", @@ -949,7 +273,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254028, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -960,11 +284,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " overview", + "content": " information", "function_call": null, "refusal": null, "role": "assistant", @@ -975,7 +299,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254028, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -986,11 +310,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " of", + "content": " on", "function_call": null, "refusal": null, "role": "assistant", @@ -1001,7 +325,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254028, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1012,11 +336,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " typical", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -1027,7 +351,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254029, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1038,11 +362,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " seasonal", + "content": "'s", "function_call": null, "refusal": null, "role": "assistant", @@ -1053,7 +377,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254029, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1064,7 +388,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -1079,7 +403,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254029, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1090,11 +414,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " patterns", + "content": "!", "function_call": null, "refusal": null, "role": "assistant", @@ -1105,7 +429,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254029, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1116,11 +440,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ":\n\n", + "content": " However", "function_call": null, "refusal": null, "role": "assistant", @@ -1131,7 +455,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254029, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1142,11 +466,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "1", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -1157,7 +481,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254030, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1168,11 +492,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".", + "content": " I", "function_call": null, "refusal": null, "role": "assistant", @@ -1183,7 +507,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254030, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1194,11 +518,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " **", + "content": "'m", "function_call": null, "refusal": null, "role": "assistant", @@ -1209,7 +533,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254030, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1220,11 +544,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "Spring", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -1235,7 +559,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254030, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1246,11 +570,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " large", "function_call": null, "refusal": null, "role": "assistant", @@ -1261,7 +585,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254030, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1272,11 +596,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "March", + "content": " language", "function_call": null, "refusal": null, "role": "assistant", @@ -1287,7 +611,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254031, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1298,11 +622,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " model", "function_call": null, "refusal": null, "role": "assistant", @@ -1313,7 +637,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254031, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1324,11 +648,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " May", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -1339,7 +663,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254031, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1350,11 +674,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")**", + "content": " I", "function_call": null, "refusal": null, "role": "assistant", @@ -1365,7 +689,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254031, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1376,11 +700,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ":", + "content": " don", "function_call": null, "refusal": null, "role": "assistant", @@ -1391,7 +715,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254031, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1402,11 +726,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Mild", + "content": "'t", "function_call": null, "refusal": null, "role": "assistant", @@ -1417,7 +741,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254032, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1428,11 +752,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " temperatures", + "content": " have", "function_call": null, "refusal": null, "role": "assistant", @@ -1443,7 +767,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254032, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1454,11 +778,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ",", + "content": " real", "function_call": null, "refusal": null, "role": "assistant", @@ -1469,7 +793,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254032, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1480,11 +804,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ranging", + "content": "-time", "function_call": null, "refusal": null, "role": "assistant", @@ -1495,7 +819,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254032, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1506,11 +830,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " from", + "content": " access", "function_call": null, "refusal": null, "role": "assistant", @@ -1521,7 +845,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254032, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1532,11 +856,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -1547,7 +871,7 @@ "logprobs": null } ], - "created": 1756921326, + "created": 1759254033, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1558,11 +882,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "15", + "content": " current", "function_call": null, "refusal": null, "role": "assistant", @@ -1573,7 +897,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254033, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1584,11 +908,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -1599,7 +923,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254033, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1610,11 +934,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " conditions", "function_call": null, "refusal": null, "role": "assistant", @@ -1625,7 +949,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254033, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1636,11 +960,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "59", + "content": ".\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -1651,7 +975,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254033, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1662,11 +986,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": "But", "function_call": null, "refusal": null, "role": "assistant", @@ -1677,7 +1001,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254034, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1688,11 +1012,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")", + "content": " I", "function_call": null, "refusal": null, "role": "assistant", @@ -1703,7 +1027,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254034, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1714,11 +1038,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -1729,7 +1053,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254034, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1740,11 +1064,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": " suggest", "function_call": null, "refusal": null, "role": "assistant", @@ -1755,7 +1079,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254034, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1766,11 +1090,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "20", + "content": " some", "function_call": null, "refusal": null, "role": "assistant", @@ -1781,7 +1105,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254034, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1792,11 +1116,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " ways", "function_call": null, "refusal": null, "role": "assistant", @@ -1807,7 +1131,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254035, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1818,11 +1142,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " for", "function_call": null, "refusal": null, "role": "assistant", @@ -1833,7 +1157,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254035, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1844,11 +1168,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "68", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -1859,7 +1183,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254035, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1870,11 +1194,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -1885,7 +1209,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254035, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1896,11 +1220,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "),", + "content": " find", "function_call": null, "refusal": null, "role": "assistant", @@ -1911,7 +1235,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254035, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1922,11 +1246,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " with", + "content": " out", "function_call": null, "refusal": null, "role": "assistant", @@ -1937,7 +1261,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254036, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1948,11 +1272,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " gentle", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -1963,7 +1287,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254036, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -1974,11 +1298,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " humidity", + "content": " current", "function_call": null, "refusal": null, "role": "assistant", @@ -1989,7 +1313,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254036, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2000,11 +1324,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".\n\n", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -2015,7 +1339,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254036, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2026,11 +1350,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "2", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -2041,7 +1365,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254036, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2052,11 +1376,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -2067,7 +1391,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254037, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2078,11 +1402,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " **", + "content": ":\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -2093,7 +1417,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254037, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2104,11 +1428,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "Summer", + "content": "1", "function_call": null, "refusal": null, "role": "assistant", @@ -2119,7 +1443,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254037, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2130,11 +1454,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -2145,7 +1469,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254037, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2156,11 +1480,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "June", + "content": " Check", "function_call": null, "refusal": null, "role": "assistant", @@ -2171,7 +1495,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254037, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2182,11 +1506,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " online", "function_call": null, "refusal": null, "role": "assistant", @@ -2197,7 +1521,7 @@ "logprobs": null } ], - "created": 1756921327, + "created": 1759254038, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2208,11 +1532,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " August", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -2223,7 +1547,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254038, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2234,11 +1558,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")**", + "content": " websites", "function_call": null, "refusal": null, "role": "assistant", @@ -2249,7 +1573,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254038, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2260,7 +1584,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -2275,33 +1599,7 @@ "logprobs": null } ], - "created": 1756921328, - "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-358", - "choices": [ - { - "delta": { - "content": " Hot", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921328, + "created": 1759254038, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2312,11 +1610,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " and", + "content": " You", "function_call": null, "refusal": null, "role": "assistant", @@ -2327,7 +1625,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254038, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2338,11 +1636,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " humid", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -2353,7 +1651,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254039, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2364,11 +1662,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ",", + "content": " check", "function_call": null, "refusal": null, "role": "assistant", @@ -2379,7 +1677,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254039, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2390,11 +1688,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " with", + "content": " websites", "function_call": null, "refusal": null, "role": "assistant", @@ -2405,7 +1703,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254039, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2416,11 +1714,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " temperatures", + "content": " like", "function_call": null, "refusal": null, "role": "assistant", @@ -2431,7 +1729,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254039, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2442,11 +1740,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " generally", + "content": " Acc", "function_call": null, "refusal": null, "role": "assistant", @@ -2457,7 +1755,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254039, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2468,11 +1766,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " between", + "content": "u", "function_call": null, "refusal": null, "role": "assistant", @@ -2483,7 +1781,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254040, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2494,11 +1792,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": "Weather", "function_call": null, "refusal": null, "role": "assistant", @@ -2509,7 +1807,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254040, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2520,11 +1818,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "25", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -2535,7 +1833,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254040, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2546,11 +1844,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " Weather", "function_call": null, "refusal": null, "role": "assistant", @@ -2561,7 +1859,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254040, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2572,11 +1870,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": ".com", "function_call": null, "refusal": null, "role": "assistant", @@ -2587,7 +1885,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254040, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2598,11 +1896,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "77", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -2613,7 +1911,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254041, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2624,11 +1922,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": " or", "function_call": null, "refusal": null, "role": "assistant", @@ -2639,7 +1937,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254041, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2650,11 +1948,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")", + "content": " Japan", "function_call": null, "refusal": null, "role": "assistant", @@ -2665,7 +1963,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254041, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2676,11 +1974,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " and", + "content": " Meteor", "function_call": null, "refusal": null, "role": "assistant", @@ -2691,7 +1989,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254041, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2702,11 +2000,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": "ological", "function_call": null, "refusal": null, "role": "assistant", @@ -2717,7 +2015,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254041, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2728,11 +2026,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "35", + "content": " Agency", "function_call": null, "refusal": null, "role": "assistant", @@ -2743,7 +2041,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254042, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2754,11 +2052,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " (", "function_call": null, "refusal": null, "role": "assistant", @@ -2769,7 +2067,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254042, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2780,11 +2078,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": "J", "function_call": null, "refusal": null, "role": "assistant", @@ -2795,7 +2093,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254042, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2806,11 +2104,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "95", + "content": "MA", "function_call": null, "refusal": null, "role": "assistant", @@ -2821,7 +2119,7 @@ "logprobs": null } ], - "created": 1756921328, + "created": 1759254042, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2832,11 +2130,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": ")", "function_call": null, "refusal": null, "role": "assistant", @@ -2847,7 +2145,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254042, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2858,11 +2156,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ").", + "content": " for", "function_call": null, "refusal": null, "role": "assistant", @@ -2873,7 +2171,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254043, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2884,11 +2182,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Heat", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -2899,7 +2197,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254043, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2910,11 +2208,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "waves", + "content": " latest", "function_call": null, "refusal": null, "role": "assistant", @@ -2925,7 +2223,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254043, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2936,11 +2234,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " are", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -2951,7 +2249,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254043, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2962,11 +2260,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " common", + "content": " forecast", "function_call": null, "refusal": null, "role": "assistant", @@ -2977,7 +2275,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254043, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -2988,11 +2286,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " during", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -3003,7 +2301,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254044, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3014,11 +2312,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " this", + "content": " current", "function_call": null, "refusal": null, "role": "assistant", @@ -3029,7 +2327,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254044, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3040,11 +2338,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " period", + "content": " conditions", "function_call": null, "refusal": null, "role": "assistant", @@ -3055,7 +2353,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254044, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3066,11 +2364,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".\n\n", + "content": ".\n", "function_call": null, "refusal": null, "role": "assistant", @@ -3081,7 +2379,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254044, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3092,11 +2390,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "3", + "content": "2", "function_call": null, "refusal": null, "role": "assistant", @@ -3107,7 +2405,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254044, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3118,7 +2416,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -3133,7 +2431,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254045, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3144,11 +2442,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " **", + "content": " Use", "function_call": null, "refusal": null, "role": "assistant", @@ -3159,7 +2457,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254045, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3170,11 +2468,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "Aut", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -3185,7 +2483,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254045, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3196,11 +2494,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "umn", + "content": " mobile", "function_call": null, "refusal": null, "role": "assistant", @@ -3211,7 +2509,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254045, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3222,11 +2520,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " app", "function_call": null, "refusal": null, "role": "assistant", @@ -3237,7 +2535,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254045, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3248,11 +2546,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "September", + "content": ":", "function_call": null, "refusal": null, "role": "assistant", @@ -3263,7 +2561,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254046, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3274,11 +2572,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " Download", "function_call": null, "refusal": null, "role": "assistant", @@ -3289,7 +2587,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254046, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3300,11 +2598,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " November", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -3315,7 +2613,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254046, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3326,11 +2624,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")**", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -3341,7 +2639,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254046, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3352,11 +2650,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ":", + "content": " app", "function_call": null, "refusal": null, "role": "assistant", @@ -3367,7 +2665,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254046, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3378,11 +2676,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Comfort", + "content": " on", "function_call": null, "refusal": null, "role": "assistant", @@ -3393,7 +2691,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254047, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3404,11 +2702,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "able", + "content": " your", "function_call": null, "refusal": null, "role": "assistant", @@ -3419,7 +2717,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254047, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3430,11 +2728,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " temperatures", + "content": " smartphone", "function_call": null, "refusal": null, "role": "assistant", @@ -3445,7 +2743,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254047, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3456,11 +2754,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " of", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -3471,7 +2769,7 @@ "logprobs": null } ], - "created": 1756921329, + "created": 1759254047, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3482,11 +2780,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " about", + "content": " such", "function_call": null, "refusal": null, "role": "assistant", @@ -3497,7 +2795,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254047, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3508,11 +2806,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": " as", "function_call": null, "refusal": null, "role": "assistant", @@ -3523,7 +2821,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254048, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3534,11 +2832,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "15", + "content": " Dark", "function_call": null, "refusal": null, "role": "assistant", @@ -3549,7 +2847,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254048, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3560,11 +2858,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " Sky", "function_call": null, "refusal": null, "role": "assistant", @@ -3575,7 +2873,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254048, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3586,11 +2884,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " or", "function_call": null, "refusal": null, "role": "assistant", @@ -3601,7 +2899,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254048, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3612,11 +2910,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "59", + "content": " Weather", "function_call": null, "refusal": null, "role": "assistant", @@ -3627,7 +2925,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254048, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3638,11 +2936,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": " Underground", "function_call": null, "refusal": null, "role": "assistant", @@ -3653,7 +2951,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254049, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3664,11 +2962,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -3679,7 +2977,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254049, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3690,7 +2988,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -3705,7 +3003,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254049, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3716,11 +3014,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": " get", "function_call": null, "refusal": null, "role": "assistant", @@ -3731,7 +3029,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254049, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3742,11 +3040,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "20", + "content": " real", "function_call": null, "refusal": null, "role": "assistant", @@ -3757,7 +3055,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254049, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3768,11 +3066,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": "-time", "function_call": null, "refusal": null, "role": "assistant", @@ -3783,7 +3081,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254050, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3794,11 +3092,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -3809,7 +3107,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254050, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3820,11 +3118,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "68", + "content": " updates", "function_call": null, "refusal": null, "role": "assistant", @@ -3835,7 +3133,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254050, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3846,11 +3144,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": ".\n", "function_call": null, "refusal": null, "role": "assistant", @@ -3861,7 +3159,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254050, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3872,11 +3170,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "),", + "content": "3", "function_call": null, "refusal": null, "role": "assistant", @@ -3887,7 +3185,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254050, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3898,11 +3196,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " making", + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -3913,7 +3211,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254051, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3924,11 +3222,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " it", + "content": " Ask", "function_call": null, "refusal": null, "role": "assistant", @@ -3939,7 +3237,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254051, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -3950,7 +3248,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -3965,59 +3263,7 @@ "logprobs": null } ], - "created": 1756921330, - "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-358", - "choices": [ - { - "delta": { - "content": " lovely", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921330, - "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-358", - "choices": [ - { - "delta": { - "content": " season", - "function_call": null, - "refusal": null, - "role": "assistant", - "tool_calls": null - }, - "finish_reason": null, - "index": 0, - "logprobs": null - } - ], - "created": 1756921330, + "created": 1759254051, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4028,11 +3274,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " for", + "content": " virtual", "function_call": null, "refusal": null, "role": "assistant", @@ -4043,7 +3289,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254051, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4054,11 +3300,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " sight", + "content": " assistant", "function_call": null, "refusal": null, "role": "assistant", @@ -4069,7 +3315,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254051, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4080,11 +3326,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "seeing", + "content": ":", "function_call": null, "refusal": null, "role": "assistant", @@ -4095,7 +3341,7 @@ "logprobs": null } ], - "created": 1756921330, + "created": 1759254052, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4106,11 +3352,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".\n\n", + "content": " If", "function_call": null, "refusal": null, "role": "assistant", @@ -4121,7 +3367,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254052, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4132,11 +3378,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "4", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -4147,7 +3393,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254052, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4158,11 +3404,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".", + "content": " have", "function_call": null, "refusal": null, "role": "assistant", @@ -4173,7 +3419,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254052, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4184,11 +3430,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " **", + "content": " a", "function_call": null, "refusal": null, "role": "assistant", @@ -4199,7 +3445,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254052, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4210,11 +3456,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "Winter", + "content": " virtual", "function_call": null, "refusal": null, "role": "assistant", @@ -4225,7 +3471,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254053, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4236,11 +3482,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " assistant", "function_call": null, "refusal": null, "role": "assistant", @@ -4251,7 +3497,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254053, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4262,11 +3508,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "December", + "content": " like", "function_call": null, "refusal": null, "role": "assistant", @@ -4277,7 +3523,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254053, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4288,11 +3534,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " Siri", "function_call": null, "refusal": null, "role": "assistant", @@ -4303,7 +3549,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254053, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4314,11 +3560,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " February", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -4329,7 +3575,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254053, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4340,11 +3586,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")**", + "content": " Google", "function_call": null, "refusal": null, "role": "assistant", @@ -4355,7 +3601,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254054, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4366,11 +3612,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ":", + "content": " Assistant", "function_call": null, "refusal": null, "role": "assistant", @@ -4381,7 +3627,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254054, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4392,11 +3638,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Cool", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -4407,7 +3653,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254054, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4418,11 +3664,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " and", + "content": " or", "function_call": null, "refusal": null, "role": "assistant", @@ -4433,7 +3679,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254054, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4444,11 +3690,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " relatively", + "content": " Alexa", "function_call": null, "refusal": null, "role": "assistant", @@ -4459,7 +3705,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254054, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4470,11 +3716,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " dry", + "content": ",", "function_call": null, "refusal": null, "role": "assistant", @@ -4485,7 +3731,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254055, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4496,11 +3742,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ",", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -4511,7 +3757,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254055, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4522,11 +3768,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " with", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -4537,7 +3783,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254055, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4548,11 +3794,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " average", + "content": " ask", "function_call": null, "refusal": null, "role": "assistant", @@ -4563,7 +3809,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254055, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4574,11 +3820,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " temperatures", + "content": " them", "function_call": null, "refusal": null, "role": "assistant", @@ -4589,7 +3835,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254055, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4600,11 +3846,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ranging", + "content": " for", "function_call": null, "refusal": null, "role": "assistant", @@ -4615,7 +3861,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254056, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4626,11 +3872,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " from", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -4641,7 +3887,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254056, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4652,11 +3898,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " -", + "content": " current", "function_call": null, "refusal": null, "role": "assistant", @@ -4667,7 +3913,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254056, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4678,11 +3924,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "2", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -4693,7 +3939,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254056, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4704,11 +3950,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -4719,7 +3965,7 @@ "logprobs": null } ], - "created": 1756921331, + "created": 1759254056, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4730,11 +3976,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -4745,7 +3991,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254057, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4756,11 +4002,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "28", + "content": ".\n\n", "function_call": null, "refusal": null, "role": "assistant", @@ -4771,7 +4017,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254057, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4782,11 +4028,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": "Please", "function_call": null, "refusal": null, "role": "assistant", @@ -4797,7 +4043,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254057, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4808,11 +4054,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ")", + "content": " note", "function_call": null, "refusal": null, "role": "assistant", @@ -4823,7 +4069,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254057, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4834,11 +4080,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " to", + "content": " that", "function_call": null, "refusal": null, "role": "assistant", @@ -4849,7 +4095,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254057, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4860,11 +4106,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " ", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -4875,7 +4121,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254058, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4886,11 +4132,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "10", + "content": "'s", "function_call": null, "refusal": null, "role": "assistant", @@ -4901,7 +4147,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254058, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4912,11 +4158,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0C", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -4927,7 +4173,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254058, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4938,11 +4184,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " (", + "content": " can", "function_call": null, "refusal": null, "role": "assistant", @@ -4953,7 +4199,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254058, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4964,11 +4210,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "50", + "content": " vary", "function_call": null, "refusal": null, "role": "assistant", @@ -4979,7 +4225,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254058, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -4990,11 +4236,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "\u00b0F", + "content": " greatly", "function_call": null, "refusal": null, "role": "assistant", @@ -5005,7 +4251,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254059, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5016,11 +4262,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ").\n\n", + "content": " depending", "function_call": null, "refusal": null, "role": "assistant", @@ -5031,7 +4277,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254059, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5042,11 +4288,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "To", + "content": " on", "function_call": null, "refusal": null, "role": "assistant", @@ -5057,7 +4303,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254059, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5068,11 +4314,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " get", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5083,7 +4329,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254059, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5094,11 +4340,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " the", + "content": " season", "function_call": null, "refusal": null, "role": "assistant", @@ -5109,7 +4355,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254059, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5120,11 +4366,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " current", + "content": " and", "function_call": null, "refusal": null, "role": "assistant", @@ -5135,7 +4381,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254060, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5146,11 +4392,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " weather", + "content": " location", "function_call": null, "refusal": null, "role": "assistant", @@ -5161,7 +4407,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254060, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5172,11 +4418,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " in", + "content": " within", "function_call": null, "refusal": null, "role": "assistant", @@ -5187,7 +4433,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254060, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5198,11 +4444,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Tokyo", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5213,7 +4459,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254060, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5224,11 +4470,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ",", + "content": " city", "function_call": null, "refusal": null, "role": "assistant", @@ -5239,7 +4485,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254060, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5250,11 +4496,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " I", + "content": ".", "function_call": null, "refusal": null, "role": "assistant", @@ -5265,7 +4511,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254061, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5276,11 +4522,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " recommend", + "content": " Would", "function_call": null, "refusal": null, "role": "assistant", @@ -5291,7 +4537,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254061, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5302,11 +4548,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " checking", + "content": " you", "function_call": null, "refusal": null, "role": "assistant", @@ -5317,7 +4563,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254061, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5328,11 +4574,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " online", + "content": " like", "function_call": null, "refusal": null, "role": "assistant", @@ -5343,7 +4589,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254061, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5354,11 +4600,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " resources", + "content": " to", "function_call": null, "refusal": null, "role": "assistant", @@ -5369,7 +4615,7 @@ "logprobs": null } ], - "created": 1756921332, + "created": 1759254061, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5380,11 +4626,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " such", + "content": " know", "function_call": null, "refusal": null, "role": "assistant", @@ -5395,7 +4641,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254062, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5406,11 +4652,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " as", + "content": " more", "function_call": null, "refusal": null, "role": "assistant", @@ -5421,7 +4667,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254062, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5432,11 +4678,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Acc", + "content": " about", "function_call": null, "refusal": null, "role": "assistant", @@ -5447,7 +4693,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254062, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5458,11 +4704,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "u", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5473,7 +4719,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254062, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5484,11 +4730,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "Weather", + "content": " typical", "function_call": null, "refusal": null, "role": "assistant", @@ -5499,7 +4745,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254062, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5510,11 +4756,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ",", + "content": " weather", "function_call": null, "refusal": null, "role": "assistant", @@ -5525,7 +4771,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254063, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5536,11 +4782,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Weather", + "content": " patterns", "function_call": null, "refusal": null, "role": "assistant", @@ -5551,7 +4797,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254063, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5562,11 +4808,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".com", + "content": " in", "function_call": null, "refusal": null, "role": "assistant", @@ -5577,7 +4823,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254063, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5588,11 +4834,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " or", + "content": " Tokyo", "function_call": null, "refusal": null, "role": "assistant", @@ -5603,7 +4849,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254063, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5614,11 +4860,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": " Met", + "content": " throughout", "function_call": null, "refusal": null, "role": "assistant", @@ -5629,7 +4875,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254063, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5640,11 +4886,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "e", + "content": " the", "function_call": null, "refusal": null, "role": "assistant", @@ -5655,7 +4901,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254064, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5666,11 +4912,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": "ors", + "content": " year", "function_call": null, "refusal": null, "role": "assistant", @@ -5681,7 +4927,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254064, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5692,11 +4938,11 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { - "content": ".", + "content": "?", "function_call": null, "refusal": null, "role": "assistant", @@ -5707,7 +4953,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254064, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -5718,7 +4964,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-358", + "id": "chatcmpl-332", "choices": [ { "delta": { @@ -5733,7 +4979,7 @@ "logprobs": null } ], - "created": 1756921333, + "created": 1759254064, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/73e97be515d9.json b/tests/integration/recordings/responses/73e97be515d9.json index 6df3dd9561..a56724ae31 100644 --- a/tests/integration/recordings/responses/73e97be515d9.json +++ b/tests/integration/recordings/responses/73e97be515d9.json @@ -41,7 +41,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-116", + "id": "chatcmpl-72", "choices": [ { "delta": { @@ -52,7 +52,7 @@ "tool_calls": [ { "index": 0, - "id": "call_0c2qffvv", + "id": "call_aone7ocw", "function": { "arguments": "{\"city\":\"Tokyo\"}", "name": "get_weather" @@ -66,7 +66,7 @@ "logprobs": null } ], - "created": 1759267492, + "created": 1759282724, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -77,7 +77,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-116", + "id": "chatcmpl-72", "choices": [ { "delta": { @@ -87,12 +87,12 @@ "role": "assistant", "tool_calls": null }, - "finish_reason": "stop", + "finish_reason": "tool_calls", "index": 0, "logprobs": null } ], - "created": 1759267492, + "created": 1759282724, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/7a047bcf8b19.json b/tests/integration/recordings/responses/7a047bcf8b19.json index 4f9c8b06ec..7cd6c3f7c8 100644 --- a/tests/integration/recordings/responses/7a047bcf8b19.json +++ b/tests/integration/recordings/responses/7a047bcf8b19.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-236", + "id": "chatcmpl-737", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759247859, + "created": 1759282582, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/7b4815aba6c5.json b/tests/integration/recordings/responses/7b4815aba6c5.json index f1e8e7165e..0494b4180f 100644 --- a/tests/integration/recordings/responses/7b4815aba6c5.json +++ b/tests/integration/recordings/responses/7b4815aba6c5.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:48.840898Z", + "created_at": "2025-10-01T01:33:52.93635761Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:48.883619Z", + "created_at": "2025-10-01T01:33:53.133195005Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:48.92504Z", + "created_at": "2025-10-01T01:33:53.332277092Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:48.966274Z", + "created_at": "2025-10-01T01:33:53.529012616Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.007525Z", + "created_at": "2025-10-01T01:33:53.724651797Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.049125Z", + "created_at": "2025-10-01T01:33:53.923248219Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.090893Z", + "created_at": "2025-10-01T01:33:54.117881107Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.132101Z", + "created_at": "2025-10-01T01:33:54.311986552Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.17401Z", + "created_at": "2025-10-01T01:33:54.505749874Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.216115Z", + "created_at": "2025-10-01T01:33:54.699245098Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.257109Z", + "created_at": "2025-10-01T01:33:54.890029079Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.298731Z", + "created_at": "2025-10-01T01:33:55.081182058Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.338833Z", + "created_at": "2025-10-01T01:33:55.27115012Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.38053Z", + "created_at": "2025-10-01T01:33:55.46403171Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.421378Z", + "created_at": "2025-10-01T01:33:55.655042212Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.462646Z", + "created_at": "2025-10-01T01:33:55.844320935Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.503814Z", + "created_at": "2025-10-01T01:33:56.035465828Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.545397Z", + "created_at": "2025-10-01T01:33:56.240155299Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,15 +346,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:49.586834Z", + "created_at": "2025-10-01T01:33:56.432393304Z", "done": true, "done_reason": "stop", - "total_duration": 1409239209, - "load_duration": 118889250, + "total_duration": 34185152900, + "load_duration": 44303323, "prompt_eval_count": 368, - "prompt_eval_duration": 543077166, + "prompt_eval_duration": 30642631331, "eval_count": 19, - "eval_duration": 746733584, + "eval_duration": 3497664639, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/80e4404d8987.json b/tests/integration/recordings/responses/80e4404d8987.json index 7eabfc3633..09d510916f 100644 --- a/tests/integration/recordings/responses/80e4404d8987.json +++ b/tests/integration/recordings/responses/80e4404d8987.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.708948Z", + "created_at": "2025-10-01T01:33:10.76700718Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.749031Z", + "created_at": "2025-10-01T01:33:10.956949035Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.790192Z", + "created_at": "2025-10-01T01:33:11.147886127Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.831093Z", + "created_at": "2025-10-01T01:33:11.337832912Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.873135Z", + "created_at": "2025-10-01T01:33:11.524017554Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.91375Z", + "created_at": "2025-10-01T01:33:11.712703934Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.95439Z", + "created_at": "2025-10-01T01:33:11.903877596Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:46.995224Z", + "created_at": "2025-10-01T01:33:12.095535165Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:47.035887Z", + "created_at": "2025-10-01T01:33:12.291614477Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,15 +184,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:47.076806Z", + "created_at": "2025-10-01T01:33:12.483844314Z", "done": true, "done_reason": "stop", - "total_duration": 2069654958, - "load_duration": 177579833, + "total_duration": 4303509972, + "load_duration": 44748689, "prompt_eval_count": 31, - "prompt_eval_duration": 1521851250, + "prompt_eval_duration": 2539513749, "eval_count": 10, - "eval_duration": 369478042, + "eval_duration": 1718623697, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/836f51dfb3c5.json b/tests/integration/recordings/responses/836f51dfb3c5.json index 85f3aff009..a850054cd0 100644 --- a/tests/integration/recordings/responses/836f51dfb3c5.json +++ b/tests/integration/recordings/responses/836f51dfb3c5.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:37:51.562847Z", + "created_at": "2025-09-30T17:38:19.258171865Z", "done": true, "done_reason": "stop", - "total_duration": 272296250, - "load_duration": 131747125, + "total_duration": 2789705003, + "load_duration": 60163509, "prompt_eval_count": 214, - "prompt_eval_duration": 124006709, + "prompt_eval_duration": 2677292181, "eval_count": 2, - "eval_duration": 15572291, + "eval_duration": 51690110, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/840fbb380b73.json b/tests/integration/recordings/responses/840fbb380b73.json index 4367d87881..017f726e83 100644 --- a/tests/integration/recordings/responses/840fbb380b73.json +++ b/tests/integration/recordings/responses/840fbb380b73.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:37:47.871962Z", + "created_at": "2025-09-30T17:37:27.310573231Z", "done": true, "done_reason": "stop", - "total_duration": 301629042, - "load_duration": 102832917, + "total_duration": 3251121805, + "load_duration": 47089617, "prompt_eval_count": 233, - "prompt_eval_duration": 154806625, + "prompt_eval_duration": 3006835928, "eval_count": 5, - "eval_duration": 43361542, + "eval_duration": 196620033, "response": "unsafe\nS1", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/84fc473e7b29.json b/tests/integration/recordings/responses/84fc473e7b29.json index a4b228f051..f01f117596 100644 --- a/tests/integration/recordings/responses/84fc473e7b29.json +++ b/tests/integration/recordings/responses/84fc473e7b29.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-344", + "id": "chatcmpl-165", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759247858, + "created": 1759282579, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/87577729d812.json b/tests/integration/recordings/responses/87577729d812.json index 7c268aa2ef..9b86990849 100644 --- a/tests/integration/recordings/responses/87577729d812.json +++ b/tests/integration/recordings/responses/87577729d812.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-119", + "id": "chatcmpl-609", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245069, + "created": 1759282388, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/8aba89449cdc.json b/tests/integration/recordings/responses/8aba89449cdc.json index 6aa6cd2c56..bb0841bbe1 100644 --- a/tests/integration/recordings/responses/8aba89449cdc.json +++ b/tests/integration/recordings/responses/8aba89449cdc.json @@ -37,7 +37,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -52,7 +52,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282364, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -63,7 +63,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -78,7 +78,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282364, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -89,7 +89,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -104,7 +104,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282364, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -115,7 +115,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -130,7 +130,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282364, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -141,7 +141,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -156,7 +156,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282365, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -167,7 +167,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -182,7 +182,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282365, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -193,7 +193,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -208,7 +208,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282365, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -219,7 +219,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-676", + "id": "chatcmpl-79", "choices": [ { "delta": { @@ -234,7 +234,7 @@ "logprobs": null } ], - "created": 1759267544, + "created": 1759282365, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/946376830d67.json b/tests/integration/recordings/responses/946376830d67.json index 18c8b0000f..52ee33bb68 100644 --- a/tests/integration/recordings/responses/946376830d67.json +++ b/tests/integration/recordings/responses/946376830d67.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.748684225Z", + "created_at": "2025-10-01T01:34:32.266493609Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.761891114Z", + "created_at": "2025-10-01T01:34:32.468394034Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.772555814Z", + "created_at": "2025-10-01T01:34:32.668683201Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.782836359Z", + "created_at": "2025-10-01T01:34:32.86812Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.792350554Z", + "created_at": "2025-10-01T01:34:33.066156104Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.801914057Z", + "created_at": "2025-10-01T01:34:33.258437386Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.811393683Z", + "created_at": "2025-10-01T01:34:33.455421239Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.820947077Z", + "created_at": "2025-10-01T01:34:33.653866336Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.830440923Z", + "created_at": "2025-10-01T01:34:33.849413071Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.840009115Z", + "created_at": "2025-10-01T01:34:34.044100975Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.850657096Z", + "created_at": "2025-10-01T01:34:34.239766712Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.860246788Z", + "created_at": "2025-10-01T01:34:34.435865862Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-30T15:57:30.869711085Z", + "created_at": "2025-10-01T01:34:34.629495297Z", "done": true, "done_reason": "stop", - "total_duration": 287660073, - "load_duration": 149338464, + "total_duration": 4426089450, + "load_duration": 45156482, "prompt_eval_count": 407, - "prompt_eval_duration": 9497286, + "prompt_eval_duration": 2016388423, "eval_count": 13, - "eval_duration": 128120190, + "eval_duration": 2363948468, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/97d3812bfccb.json b/tests/integration/recordings/responses/97d3812bfccb.json index 11e0fb4024..e46bd8ff88 100644 --- a/tests/integration/recordings/responses/97d3812bfccb.json +++ b/tests/integration/recordings/responses/97d3812bfccb.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:37:52.965106Z", + "created_at": "2025-09-30T17:38:28.757983551Z", "done": true, "done_reason": "stop", - "total_duration": 376594792, - "load_duration": 158273792, + "total_duration": 2983247976, + "load_duration": 54874758, "prompt_eval_count": 217, - "prompt_eval_duration": 177001375, + "prompt_eval_duration": 2733668666, "eval_count": 5, - "eval_duration": 40927500, + "eval_duration": 194120880, "response": "unsafe\nS1", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/97e259c0d3e5.json b/tests/integration/recordings/responses/97e259c0d3e5.json index 2e47bca802..7238eeaeff 100644 --- a/tests/integration/recordings/responses/97e259c0d3e5.json +++ b/tests/integration/recordings/responses/97e259c0d3e5.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.505006Z", + "created_at": "2025-10-01T01:34:45.948323264Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.547032Z", + "created_at": "2025-10-01T01:34:46.150643413Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.588985Z", + "created_at": "2025-10-01T01:34:46.345718638Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.631139Z", + "created_at": "2025-10-01T01:34:46.536839034Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.67269Z", + "created_at": "2025-10-01T01:34:46.730927915Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.714798Z", + "created_at": "2025-10-01T01:34:46.923249037Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.756492Z", + "created_at": "2025-10-01T01:34:47.118794722Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.798115Z", + "created_at": "2025-10-01T01:34:47.311093083Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.840012Z", + "created_at": "2025-10-01T01:34:47.500911354Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.882555Z", + "created_at": "2025-10-01T01:34:47.691237236Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.924566Z", + "created_at": "2025-10-01T01:34:47.88193831Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:53.966279Z", + "created_at": "2025-10-01T01:34:48.072350123Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.008483Z", + "created_at": "2025-10-01T01:34:48.264819734Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.050042Z", + "created_at": "2025-10-01T01:34:48.46196594Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.092416Z", + "created_at": "2025-10-01T01:34:48.664135581Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.134857Z", + "created_at": "2025-10-01T01:34:48.860761943Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.176408Z", + "created_at": "2025-10-01T01:34:49.058887372Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.217553Z", + "created_at": "2025-10-01T01:34:49.255951122Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,15 +346,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:54.259141Z", + "created_at": "2025-10-01T01:34:49.448811175Z", "done": true, "done_reason": "stop", - "total_duration": 1008303875, - "load_duration": 119709875, + "total_duration": 7098227825, + "load_duration": 42591593, "prompt_eval_count": 384, - "prompt_eval_duration": 132645959, + "prompt_eval_duration": 3553000114, "eval_count": 19, - "eval_duration": 755215708, + "eval_duration": 3502025035, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/9c140a29ae09.json b/tests/integration/recordings/responses/9c140a29ae09.json index a436484d73..99b1e4cf83 100644 --- a/tests/integration/recordings/responses/9c140a29ae09.json +++ b/tests/integration/recordings/responses/9c140a29ae09.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.13567Z", + "created_at": "2025-10-01T01:34:59.108944421Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.17774Z", + "created_at": "2025-10-01T01:34:59.303969394Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.220061Z", + "created_at": "2025-10-01T01:34:59.496380344Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.261406Z", + "created_at": "2025-10-01T01:34:59.690402813Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.302615Z", + "created_at": "2025-10-01T01:34:59.886883901Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.343879Z", + "created_at": "2025-10-01T01:35:00.092344957Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.384951Z", + "created_at": "2025-10-01T01:35:00.294533906Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.426563Z", + "created_at": "2025-10-01T01:35:00.491944714Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.467648Z", + "created_at": "2025-10-01T01:35:00.687125699Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.509469Z", + "created_at": "2025-10-01T01:35:00.883643235Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.552302Z", + "created_at": "2025-10-01T01:35:01.078457636Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.596236Z", + "created_at": "2025-10-01T01:35:01.278324163Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:37:55.637816Z", + "created_at": "2025-10-01T01:35:01.476682242Z", "done": true, "done_reason": "stop", - "total_duration": 726849208, - "load_duration": 147625750, + "total_duration": 4443849560, + "load_duration": 44492422, "prompt_eval_count": 415, - "prompt_eval_duration": 75722709, + "prompt_eval_duration": 2029440575, "eval_count": 13, - "eval_duration": 502787333, + "eval_duration": 2369292378, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/9fadf5a3d68f.json b/tests/integration/recordings/responses/9fadf5a3d68f.json index aba45bcd32..2ba404b707 100644 --- a/tests/integration/recordings/responses/9fadf5a3d68f.json +++ b/tests/integration/recordings/responses/9fadf5a3d68f.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:38:03.270261Z", + "created_at": "2025-09-30T17:40:05.569054257Z", "done": true, "done_reason": "stop", - "total_duration": 244051875, - "load_duration": 111239500, + "total_duration": 2957218530, + "load_duration": 54048822, "prompt_eval_count": 224, - "prompt_eval_duration": 120962791, + "prompt_eval_duration": 2853937923, "eval_count": 2, - "eval_duration": 11306292, + "eval_duration": 48703790, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/a59d0d7c1485.json b/tests/integration/recordings/responses/a59d0d7c1485.json index c951596cee..3011a4ffa3 100644 --- a/tests/integration/recordings/responses/a59d0d7c1485.json +++ b/tests/integration/recordings/responses/a59d0d7c1485.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:38:04.367295Z", + "created_at": "2025-09-30T17:40:13.28032796Z", "done": true, "done_reason": "stop", - "total_duration": 276503250, - "load_duration": 125852000, + "total_duration": 3178842015, + "load_duration": 44428132, "prompt_eval_count": 238, - "prompt_eval_duration": 138575125, + "prompt_eval_duration": 3081272287, "eval_count": 2, - "eval_duration": 11277208, + "eval_duration": 52562543, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/b28f75bd87dc.json b/tests/integration/recordings/responses/b28f75bd87dc.json index 4a874e119b..d37fbede8e 100644 --- a/tests/integration/recordings/responses/b28f75bd87dc.json +++ b/tests/integration/recordings/responses/b28f75bd87dc.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-316", + "id": "chatcmpl-489", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759247858, + "created": 1759282539, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/c2ac76cbf66d.json b/tests/integration/recordings/responses/c2ac76cbf66d.json index 34f0c4a1dc..496f418156 100644 --- a/tests/integration/recordings/responses/c2ac76cbf66d.json +++ b/tests/integration/recordings/responses/c2ac76cbf66d.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-963", + "id": "chatcmpl-876", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245073, + "created": 1759282400, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/c8234a1171f3.json b/tests/integration/recordings/responses/c8234a1171f3.json index 6bfe929b48..241e998e16 100644 --- a/tests/integration/recordings/responses/c8234a1171f3.json +++ b/tests/integration/recordings/responses/c8234a1171f3.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-240", + "id": "chatcmpl-306", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245081, + "created": 1759282478, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/c9cba6f3ee38.json b/tests/integration/recordings/responses/c9cba6f3ee38.json index 02363c70ee..1ba23221eb 100644 --- a/tests/integration/recordings/responses/c9cba6f3ee38.json +++ b/tests/integration/recordings/responses/c9cba6f3ee38.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:38:03.002753Z", + "created_at": "2025-09-30T17:40:02.587880074Z", "done": true, "done_reason": "stop", - "total_duration": 334941166, - "load_duration": 149512166, + "total_duration": 2895949169, + "load_duration": 45631237, "prompt_eval_count": 219, - "prompt_eval_duration": 173843500, + "prompt_eval_duration": 2801365130, "eval_count": 2, - "eval_duration": 11119166, + "eval_duration": 48315364, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/cbd6b65e0622.json b/tests/integration/recordings/responses/cbd6b65e0622.json new file mode 100644 index 0000000000..9a77e73499 --- /dev/null +++ b/tests/integration/recordings/responses/cbd6b65e0622.json @@ -0,0 +1,98 @@ +{ + "request": { + "method": "POST", + "url": "http://0.0.0.0:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "what's the current time? You MUST call the `get_current_time` function to find out." + } + ], + "stream": true, + "tools": [ + { + "type": "function", + "function": { + "type": "function", + "name": "get_current_time", + "description": "Get the current time", + "parameters": {}, + "strict": null + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-979", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": [ + { + "index": 0, + "id": "call_ik598ri6", + "function": { + "arguments": "{}", + "name": "get_current_time" + }, + "type": "function" + } + ] + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1759282380, + "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-979", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "tool_calls", + "index": 0, + "logprobs": null + } + ], + "created": 1759282380, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion.chunk", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": null + } + } + ], + "is_streaming": true + } +} diff --git a/tests/integration/recordings/responses/cd294c2e0038.json b/tests/integration/recordings/responses/cd294c2e0038.json index cad7814b31..985cfa1bbc 100644 --- a/tests/integration/recordings/responses/cd294c2e0038.json +++ b/tests/integration/recordings/responses/cd294c2e0038.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-325", + "id": "chatcmpl-251", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759247860, + "created": 1759282591, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/cf776b1aa432.json b/tests/integration/recordings/responses/cf776b1aa432.json index c7449427a8..3b08967d55 100644 --- a/tests/integration/recordings/responses/cf776b1aa432.json +++ b/tests/integration/recordings/responses/cf776b1aa432.json @@ -21,7 +21,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -36,7 +36,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282661, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -47,7 +47,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -62,7 +62,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282661, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -73,7 +73,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -88,7 +88,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282661, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -99,7 +99,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -114,7 +114,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282661, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -125,7 +125,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -140,7 +140,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282661, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -151,7 +151,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -166,7 +166,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282662, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -177,7 +177,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -192,7 +192,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282662, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -203,7 +203,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-78", + "id": "chatcmpl-615", "choices": [ { "delta": { @@ -218,7 +218,7 @@ "logprobs": null } ], - "created": 1759259077, + "created": 1759282662, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/d0ac68cbde69.json b/tests/integration/recordings/responses/d0ac68cbde69.json index 4dcc6a69bf..b37962fb64 100644 --- a/tests/integration/recordings/responses/d0ac68cbde69.json +++ b/tests/integration/recordings/responses/d0ac68cbde69.json @@ -11,27 +11,7 @@ "body": { "__type__": "ollama._types.ProcessResponse", "__data__": { - "models": [ - { - "model": "llama3.2:3b-instruct-fp16", - "name": "llama3.2:3b-instruct-fp16", - "digest": "195a8c01d91ec3cb1e0aad4624a51f2602c51fa7d96110f8ab5a20c84081804d", - "expires_at": "2025-09-30T14:29:52.682809-07:00", - "size": 8581748736, - "size_vram": 8581748736, - "details": { - "parent_model": "", - "format": "gguf", - "family": "llama", - "families": [ - "llama" - ], - "parameter_size": "3.2B", - "quantization_level": "F16" - }, - "context_length": null - } - ] + "models": [] } }, "is_streaming": false diff --git a/tests/integration/recordings/responses/d7caf68e394e.json b/tests/integration/recordings/responses/d7caf68e394e.json index acabcaa042..2347344c1b 100644 --- a/tests/integration/recordings/responses/d7caf68e394e.json +++ b/tests/integration/recordings/responses/d7caf68e394e.json @@ -21,7 +21,7 @@ "body": { "__type__": "openai.types.chat.chat_completion.ChatCompletion", "__data__": { - "id": "chatcmpl-56", + "id": "chatcmpl-480", "choices": [ { "finish_reason": "stop", @@ -38,7 +38,7 @@ } } ], - "created": 1759245088, + "created": 1759282535, "model": "llama-guard3:1b", "object": "chat.completion", "service_tier": null, diff --git a/tests/integration/recordings/responses/dd226d71f844.json b/tests/integration/recordings/responses/dd226d71f844.json index ba2810bc93..aa4d64da7e 100644 --- a/tests/integration/recordings/responses/dd226d71f844.json +++ b/tests/integration/recordings/responses/dd226d71f844.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.682744Z", + "created_at": "2025-10-01T01:36:39.731839864Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.72605Z", + "created_at": "2025-10-01T01:36:39.927398349Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.770654Z", + "created_at": "2025-10-01T01:36:40.131176362Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.819087Z", + "created_at": "2025-10-01T01:36:40.3289863Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.862915Z", + "created_at": "2025-10-01T01:36:40.527460869Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.913209Z", + "created_at": "2025-10-01T01:36:40.722852039Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.951646Z", + "created_at": "2025-10-01T01:36:40.922357134Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.996738Z", + "created_at": "2025-10-01T01:36:41.142449109Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:06.046726Z", + "created_at": "2025-10-01T01:36:41.34351538Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:06.08508Z", + "created_at": "2025-10-01T01:36:41.544611985Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:06.128566Z", + "created_at": "2025-10-01T01:36:41.746118193Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:06.173309Z", + "created_at": "2025-10-01T01:36:41.949240209Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,15 +238,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:06.218818Z", + "created_at": "2025-10-01T01:36:42.151060868Z", "done": true, "done_reason": "stop", - "total_duration": 755252250, - "load_duration": 141479625, + "total_duration": 4482970180, + "load_duration": 43494552, "prompt_eval_count": 402, - "prompt_eval_duration": 76304166, + "prompt_eval_duration": 2018500580, "eval_count": 13, - "eval_duration": 536202125, + "eval_duration": 2420393884, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/decfd950646c.json b/tests/integration/recordings/responses/decfd950646c.json index c46fa86860..1c2934ab5c 100644 --- a/tests/integration/recordings/responses/decfd950646c.json +++ b/tests/integration/recordings/responses/decfd950646c.json @@ -44,22 +44,32 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-202", + "id": "chatcmpl-163", "choices": [ { "delta": { - "content": "{\"name\":\"get_weather\",\"parameters{\"key\"]=\"Tokyo\"}}", + "content": "", "function_call": null, "refusal": null, "role": "assistant", - "tool_calls": null + "tool_calls": [ + { + "index": 0, + "id": "call_5gqadim6", + "function": { + "arguments": "{\"city\":\"Tokyo\"}", + "name": "get_weather" + }, + "type": "function" + } + ] }, "finish_reason": null, "index": 0, "logprobs": null } ], - "created": 1756921363, + "created": 1759254129, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, @@ -70,7 +80,7 @@ { "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", "__data__": { - "id": "chatcmpl-202", + "id": "chatcmpl-163", "choices": [ { "delta": { @@ -80,12 +90,12 @@ "role": "assistant", "tool_calls": null }, - "finish_reason": "stop", + "finish_reason": "tool_calls", "index": 0, "logprobs": null } ], - "created": 1756921363, + "created": 1759254129, "model": "llama3.2:3b-instruct-fp16", "object": "chat.completion.chunk", "service_tier": null, diff --git a/tests/integration/recordings/responses/eee47930e3ae.json b/tests/integration/recordings/responses/eee47930e3ae.json index 283416a09a..086ce18f84 100644 --- a/tests/integration/recordings/responses/eee47930e3ae.json +++ b/tests/integration/recordings/responses/eee47930e3ae.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.631107Z", + "created_at": "2025-10-01T01:36:34.037711241Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.673105Z", + "created_at": "2025-10-01T01:36:34.234670218Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.714459Z", + "created_at": "2025-10-01T01:36:34.430073402Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.755882Z", + "created_at": "2025-10-01T01:36:34.629562851Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.797494Z", + "created_at": "2025-10-01T01:36:34.828769603Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.839382Z", + "created_at": "2025-10-01T01:36:35.027101431Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.881062Z", + "created_at": "2025-10-01T01:36:35.228873906Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.921976Z", + "created_at": "2025-10-01T01:36:35.429147653Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:04.962922Z", + "created_at": "2025-10-01T01:36:35.626756664Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.00411Z", + "created_at": "2025-10-01T01:36:35.822847752Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.04532Z", + "created_at": "2025-10-01T01:36:36.021190515Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.086979Z", + "created_at": "2025-10-01T01:36:36.228035317Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.128195Z", + "created_at": "2025-10-01T01:36:36.424413535Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.169221Z", + "created_at": "2025-10-01T01:36:36.62756048Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.210938Z", + "created_at": "2025-10-01T01:36:36.828422414Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.252232Z", + "created_at": "2025-10-01T01:36:37.033389762Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.293529Z", + "created_at": "2025-10-01T01:36:37.239556153Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.334965Z", + "created_at": "2025-10-01T01:36:37.448526412Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,15 +346,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:38:05.376741Z", + "created_at": "2025-10-01T01:36:37.648660737Z", "done": true, "done_reason": "stop", - "total_duration": 936717042, - "load_duration": 109245542, + "total_duration": 6101960547, + "load_duration": 42550477, "prompt_eval_count": 371, - "prompt_eval_duration": 80430583, + "prompt_eval_duration": 2446898261, "eval_count": 19, - "eval_duration": 746422917, + "eval_duration": 3611916940, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/f477c2fe1332.json b/tests/integration/recordings/responses/f477c2fe1332.json index d3c8e7176d..bd54883546 100644 --- a/tests/integration/recordings/responses/f477c2fe1332.json +++ b/tests/integration/recordings/responses/f477c2fe1332.json @@ -22,7 +22,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.583665Z", + "created_at": "2025-10-01T01:38:14.816773611Z", "done": false, "done_reason": null, "total_duration": null, @@ -40,7 +40,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.625653Z", + "created_at": "2025-10-01T01:38:15.015836301Z", "done": false, "done_reason": null, "total_duration": null, @@ -58,7 +58,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.667189Z", + "created_at": "2025-10-01T01:38:15.213696526Z", "done": false, "done_reason": null, "total_duration": null, @@ -76,7 +76,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.708905Z", + "created_at": "2025-10-01T01:38:15.414929406Z", "done": false, "done_reason": null, "total_duration": null, @@ -94,7 +94,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.751003Z", + "created_at": "2025-10-01T01:38:15.611961584Z", "done": false, "done_reason": null, "total_duration": null, @@ -112,7 +112,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.792516Z", + "created_at": "2025-10-01T01:38:15.810925669Z", "done": false, "done_reason": null, "total_duration": null, @@ -130,7 +130,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.834194Z", + "created_at": "2025-10-01T01:38:16.024560322Z", "done": false, "done_reason": null, "total_duration": null, @@ -148,7 +148,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.878321Z", + "created_at": "2025-10-01T01:38:16.221109927Z", "done": false, "done_reason": null, "total_duration": null, @@ -166,7 +166,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.921552Z", + "created_at": "2025-10-01T01:38:16.417436307Z", "done": false, "done_reason": null, "total_duration": null, @@ -184,7 +184,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:31.963105Z", + "created_at": "2025-10-01T01:38:16.617952673Z", "done": false, "done_reason": null, "total_duration": null, @@ -202,7 +202,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.005494Z", + "created_at": "2025-10-01T01:38:16.813239478Z", "done": false, "done_reason": null, "total_duration": null, @@ -220,7 +220,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.047231Z", + "created_at": "2025-10-01T01:38:17.014012745Z", "done": false, "done_reason": null, "total_duration": null, @@ -238,7 +238,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.089031Z", + "created_at": "2025-10-01T01:38:17.21415578Z", "done": false, "done_reason": null, "total_duration": null, @@ -256,7 +256,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.130704Z", + "created_at": "2025-10-01T01:38:17.411442027Z", "done": false, "done_reason": null, "total_duration": null, @@ -274,7 +274,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.172183Z", + "created_at": "2025-10-01T01:38:17.610203746Z", "done": false, "done_reason": null, "total_duration": null, @@ -292,7 +292,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.21392Z", + "created_at": "2025-10-01T01:38:17.806756435Z", "done": false, "done_reason": null, "total_duration": null, @@ -310,7 +310,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.255392Z", + "created_at": "2025-10-01T01:38:18.009202601Z", "done": false, "done_reason": null, "total_duration": null, @@ -328,7 +328,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.297249Z", + "created_at": "2025-10-01T01:38:18.204934978Z", "done": false, "done_reason": null, "total_duration": null, @@ -346,7 +346,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.341358Z", + "created_at": "2025-10-01T01:38:18.402371167Z", "done": false, "done_reason": null, "total_duration": null, @@ -364,7 +364,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.384155Z", + "created_at": "2025-10-01T01:38:18.598001673Z", "done": false, "done_reason": null, "total_duration": null, @@ -382,15 +382,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-09-03T17:42:32.426441Z", + "created_at": "2025-10-01T01:38:18.795317047Z", "done": true, "done_reason": "stop", - "total_duration": 1659557917, - "load_duration": 75341875, + "total_duration": 36201749155, + "load_duration": 41187586, "prompt_eval_count": 375, - "prompt_eval_duration": 740178250, + "prompt_eval_duration": 32180468680, "eval_count": 21, - "eval_duration": 843394541, + "eval_duration": 3979448369, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/fcdef245da95.json b/tests/integration/recordings/responses/fcdef245da95.json index d2801b9c6d..0246d3481b 100644 --- a/tests/integration/recordings/responses/fcdef245da95.json +++ b/tests/integration/recordings/responses/fcdef245da95.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-09-03T17:37:44.986629Z", + "created_at": "2025-09-30T17:37:16.577132681Z", "done": true, "done_reason": "stop", - "total_duration": 285693167, - "load_duration": 110888542, + "total_duration": 4644975499, + "load_duration": 1639168216, "prompt_eval_count": 212, - "prompt_eval_duration": 163158250, + "prompt_eval_duration": 2946622894, "eval_count": 2, - "eval_duration": 11080125, + "eval_duration": 58451208, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/models-bd032f995f2a-abd54ea0.json b/tests/integration/recordings/responses/models-bd032f995f2a-abd54ea0.json new file mode 100644 index 0000000000..ad363fa2f2 --- /dev/null +++ b/tests/integration/recordings/responses/models-bd032f995f2a-abd54ea0.json @@ -0,0 +1,42 @@ +{ + "request": { + "method": "POST", + "url": "http://0.0.0.0:11434/v1/v1/models", + "headers": {}, + "body": {}, + "endpoint": "/v1/models", + "model": "" + }, + "response": { + "body": [ + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "llama-guard3:1b", + "created": 1753937098, + "object": "model", + "owned_by": "library" + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "all-minilm:l6-v2", + "created": 1753936935, + "object": "model", + "owned_by": "library" + } + }, + { + "__type__": "openai.types.model.Model", + "__data__": { + "id": "llama3.2:3b-instruct-fp16", + "created": 1753936925, + "object": "model", + "owned_by": "library" + } + } + ], + "is_streaming": false + } +} diff --git a/tests/unit/providers/agents/meta_reference/test_openai_responses.py b/tests/unit/providers/agents/meta_reference/test_openai_responses.py index 5e5914a03f..5ddc1bda88 100644 --- a/tests/unit/providers/agents/meta_reference/test_openai_responses.py +++ b/tests/unit/providers/agents/meta_reference/test_openai_responses.py @@ -327,6 +327,132 @@ async def fake_stream_toolcall(): assert chunks[5].response.output[0].name == "get_weather" +async def test_create_openai_response_with_tool_call_function_arguments_none(openai_responses_impl, mock_inference_api): + """Test creating an OpenAI response with a tool call response that has a function that does not accept arguments, or arguments set to None when they are not mandatory.""" + # Setup + input_text = "What is the time right now?" + model = "meta-llama/Llama-3.1-8B-Instruct" + + async def fake_stream_toolcall(): + yield ChatCompletionChunk( + id="123", + choices=[ + Choice( + index=0, + delta=ChoiceDelta( + tool_calls=[ + ChoiceDeltaToolCall( + index=0, + id="tc_123", + function=ChoiceDeltaToolCallFunction(name="get_current_time", arguments=None), + type=None, + ) + ] + ), + ), + ], + created=1, + model=model, + object="chat.completion.chunk", + ) + + mock_inference_api.openai_chat_completion.return_value = fake_stream_toolcall() + + # Function does not accept arguments + result = await openai_responses_impl.create_openai_response( + input=input_text, + model=model, + stream=True, + temperature=0.1, + tools=[ + OpenAIResponseInputToolFunction( + name="get_current_time", + description="Get current time for system's timezone", + parameters={}, + ) + ], + ) + + # Check that we got the content from our mocked tool execution result + chunks = [chunk async for chunk in result] + + # Verify event types + # Should have: response.created, output_item.added, function_call_arguments.delta, + # function_call_arguments.done, output_item.done, response.completed + assert len(chunks) == 5 + + # Verify inference API was called correctly (after iterating over result) + first_call = mock_inference_api.openai_chat_completion.call_args_list[0] + assert first_call.kwargs["messages"][0].content == input_text + assert first_call.kwargs["tools"] is not None + assert first_call.kwargs["temperature"] == 0.1 + + # Check response.created event (should have empty output) + assert chunks[0].type == "response.created" + assert len(chunks[0].response.output) == 0 + + # Check streaming events + assert chunks[1].type == "response.output_item.added" + assert chunks[2].type == "response.function_call_arguments.done" + assert chunks[3].type == "response.output_item.done" + + # Check response.completed event (should have the tool call with arguments set to "{}") + assert chunks[4].type == "response.completed" + assert len(chunks[4].response.output) == 1 + assert chunks[4].response.output[0].type == "function_call" + assert chunks[4].response.output[0].name == "get_current_time" + assert chunks[4].response.output[0].arguments == "{}" + + mock_inference_api.openai_chat_completion.return_value = fake_stream_toolcall() + + # Function accepts optional arguments + result = await openai_responses_impl.create_openai_response( + input=input_text, + model=model, + stream=True, + temperature=0.1, + tools=[ + OpenAIResponseInputToolFunction( + name="get_current_time", + description="Get current time for system's timezone", + parameters={ + "timezone": "string", + }, + ) + ], + ) + + # Check that we got the content from our mocked tool execution result + chunks = [chunk async for chunk in result] + + # Verify event types + # Should have: response.created, output_item.added, function_call_arguments.delta, + # function_call_arguments.done, output_item.done, response.completed + assert len(chunks) == 5 + + # Verify inference API was called correctly (after iterating over result) + first_call = mock_inference_api.openai_chat_completion.call_args_list[0] + assert first_call.kwargs["messages"][0].content == input_text + assert first_call.kwargs["tools"] is not None + assert first_call.kwargs["temperature"] == 0.1 + + # Check response.created event (should have empty output) + assert chunks[0].type == "response.created" + assert len(chunks[0].response.output) == 0 + + # Check streaming events + assert chunks[1].type == "response.output_item.added" + assert chunks[2].type == "response.function_call_arguments.done" + assert chunks[3].type == "response.output_item.done" + + # Check response.completed event (should have the tool call with arguments set to "{}") + assert chunks[4].type == "response.completed" + assert len(chunks[4].response.output) == 1 + assert chunks[4].response.output[0].type == "function_call" + assert chunks[4].response.output[0].name == "get_current_time" + assert chunks[4].response.output[0].arguments == "{}" + + async def test_create_openai_response_with_multiple_messages(openai_responses_impl, mock_inference_api): """Test creating an OpenAI response with multiple messages.""" # Setup