diff --git a/llama_stack/testing/inference_recorder.py b/llama_stack/testing/inference_recorder.py index abfefa0ce..478f77773 100644 --- a/llama_stack/testing/inference_recorder.py +++ b/llama_stack/testing/inference_recorder.py @@ -217,55 +217,21 @@ class ResponseStorage: return cast(dict[str, Any], data) -async def _patched_inference_method(original_method, self, client_type, method_name=None, *args, **kwargs): +async def _patched_inference_method(original_method, self, client_type, endpoint, *args, **kwargs): global _current_mode, _current_storage if _current_mode == InferenceMode.LIVE or _current_storage is None: # Normal operation return await original_method(self, *args, **kwargs) - # Get base URL and endpoint based on client type + # Get base URL based on client type if client_type == "openai": base_url = str(self._client.base_url) - - # Determine endpoint based on the method's module/class path - method_str = str(original_method) - if "chat.completions" in method_str: - endpoint = "/v1/chat/completions" - elif "embeddings" in method_str: - endpoint = "/v1/embeddings" - elif "completions" in method_str: - endpoint = "/v1/completions" - else: - # Fallback - try to guess from the self object - if hasattr(self, "_resource") and hasattr(self._resource, "_resource"): - resource_name = getattr(self._resource._resource, "_resource", "unknown") - if "chat" in str(resource_name): - endpoint = "/v1/chat/completions" - elif "embeddings" in str(resource_name): - endpoint = "/v1/embeddings" - else: - endpoint = "/v1/completions" - else: - endpoint = "/v1/completions" - elif client_type == "ollama": # Get base URL from the client (Ollama client uses host attribute) base_url = getattr(self, "host", "http://localhost:11434") if not base_url.startswith("http"): base_url = f"http://{base_url}" - - # Determine endpoint based on method name - if method_name == "generate": - endpoint = "/api/generate" - elif method_name == "chat": - endpoint = "/api/chat" - elif method_name == "embed": - endpoint = "/api/embeddings" - elif method_name == "list": - endpoint = "/api/tags" - else: - endpoint = f"/api/{method_name}" else: raise ValueError(f"Unknown client type: {client_type}") @@ -366,14 +332,18 @@ def patch_inference_clients(): # Create patched methods for OpenAI client async def patched_chat_completions_create(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["chat_completions_create"], self, "openai", *args, **kwargs + _original_methods["chat_completions_create"], self, "openai", "/v1/chat/completions", *args, **kwargs ) async def patched_completions_create(self, *args, **kwargs): - return await _patched_inference_method(_original_methods["completions_create"], self, "openai", *args, **kwargs) + return await _patched_inference_method( + _original_methods["completions_create"], self, "openai", "/v1/completions", *args, **kwargs + ) async def patched_embeddings_create(self, *args, **kwargs): - return await _patched_inference_method(_original_methods["embeddings_create"], self, "openai", *args, **kwargs) + return await _patched_inference_method( + _original_methods["embeddings_create"], self, "openai", "/v1/embeddings", *args, **kwargs + ) # Apply OpenAI patches AsyncChatCompletions.create = patched_chat_completions_create @@ -383,30 +353,32 @@ def patch_inference_clients(): # Create patched methods for Ollama client async def patched_ollama_generate(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["ollama_generate"], self, "ollama", "generate", *args, **kwargs + _original_methods["ollama_generate"], self, "ollama", "/api/generate", *args, **kwargs ) async def patched_ollama_chat(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["ollama_chat"], self, "ollama", "chat", *args, **kwargs + _original_methods["ollama_chat"], self, "ollama", "/api/chat", *args, **kwargs ) async def patched_ollama_embed(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["ollama_embed"], self, "ollama", "embed", *args, **kwargs + _original_methods["ollama_embed"], self, "ollama", "/api/embeddings", *args, **kwargs ) async def patched_ollama_ps(self, *args, **kwargs): - return await _patched_inference_method(_original_methods["ollama_ps"], self, "ollama", "ps", *args, **kwargs) + return await _patched_inference_method( + _original_methods["ollama_ps"], self, "ollama", "/api/ps", *args, **kwargs + ) async def patched_ollama_pull(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["ollama_pull"], self, "ollama", "pull", *args, **kwargs + _original_methods["ollama_pull"], self, "ollama", "/api/pull", *args, **kwargs ) async def patched_ollama_list(self, *args, **kwargs): return await _patched_inference_method( - _original_methods["ollama_list"], self, "ollama", "list", *args, **kwargs + _original_methods["ollama_list"], self, "ollama", "/api/tags", *args, **kwargs ) # Apply Ollama patches diff --git a/tests/integration/recordings/index.sqlite b/tests/integration/recordings/index.sqlite index 2e1256d21..72a1dae9b 100644 Binary files a/tests/integration/recordings/index.sqlite and b/tests/integration/recordings/index.sqlite differ diff --git a/tests/integration/recordings/responses/00ba04f74a96.json b/tests/integration/recordings/responses/00ba04f74a96.json index c9eb76585..d2e482d76 100644 --- a/tests/integration/recordings/responses/00ba04f74a96.json +++ b/tests/integration/recordings/responses/00ba04f74a96.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:03.590710793Z", + "created_at": "2025-08-01T23:12:53.860911Z", "done": true, "done_reason": "stop", - "total_duration": 1043588135, - "load_duration": 41601119, + "total_duration": 249137667, + "load_duration": 152509542, "prompt_eval_count": 216, - "prompt_eval_duration": 957017411, + "prompt_eval_duration": 71000000, "eval_count": 2, - "eval_duration": 44409088, + "eval_duration": 24000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/0b27fd737699.json b/tests/integration/recordings/responses/0b27fd737699.json index 5ea133b73..e20c65c75 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-07-31T17:43:37.656005919Z", + "created_at": "2025-08-01T23:13:57.556416Z", "done": true, "done_reason": "stop", - "total_duration": 2903834654, - "load_duration": 43364090, + "total_duration": 432363250, + "load_duration": 159296417, "prompt_eval_count": 223, - "prompt_eval_duration": 2812583330, + "prompt_eval_duration": 257000000, "eval_count": 2, - "eval_duration": 47252843, + "eval_duration": 14000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/0b3f2e4754ff.json b/tests/integration/recordings/responses/0b3f2e4754ff.json new file mode 100644 index 000000000..28e923e9c --- /dev/null +++ b/tests/integration/recordings/responses/0b3f2e4754ff.json @@ -0,0 +1,235 @@ +{ + "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 is the capital of France?" + } + ], + "response_format": { + "type": "text" + }, + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-29", + "choices": [ + { + "delta": { + "content": "The", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": " capital", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": " France", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": " Paris", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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-29", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754090031, + "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/0e8f2b001dd9.json b/tests/integration/recordings/responses/0e8f2b001dd9.json new file mode 100644 index 000000000..7c5973fae --- /dev/null +++ b/tests/integration/recordings/responses/0e8f2b001dd9.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "Which planet has rings around it with a name starting with letter S?" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "chatcmpl-368", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "Saturn is known for its extensive ring system.", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1754081853, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": { + "completion_tokens": 11, + "prompt_tokens": 39, + "total_tokens": 50, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/10eea8c15ddc.json b/tests/integration/recordings/responses/10eea8c15ddc.json index 286ea6ed5..71496da9a 100644 --- a/tests/integration/recordings/responses/10eea8c15ddc.json +++ b/tests/integration/recordings/responses/10eea8c15ddc.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:58:57.232902036Z", + "created_at": "2025-08-01T23:12:51.682357Z", "done": true, "done_reason": "stop", - "total_duration": 1112852961, - "load_duration": 40973130, + "total_duration": 238161000, + "load_duration": 72494750, "prompt_eval_count": 212, - "prompt_eval_duration": 898310684, + "prompt_eval_duration": 87000000, "eval_count": 5, - "eval_duration": 173032826, + "eval_duration": 74000000, "response": "unsafe\nS8", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/17253d7cc667.json b/tests/integration/recordings/responses/17253d7cc667.json index 28d20a76a..1013a8b08 100644 --- a/tests/integration/recordings/responses/17253d7cc667.json +++ b/tests/integration/recordings/responses/17253d7cc667.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:00.488769233Z", + "created_at": "2025-08-01T23:12:52.919624Z", "done": true, "done_reason": "stop", - "total_duration": 983619113, - "load_duration": 41180204, + "total_duration": 201956834, + "load_duration": 105132584, "prompt_eval_count": 212, - "prompt_eval_duration": 898774731, + "prompt_eval_duration": 75000000, "eval_count": 2, - "eval_duration": 43157634, + "eval_duration": 20000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/173ecb3aab28.json b/tests/integration/recordings/responses/173ecb3aab28.json new file mode 100644 index 000000000..bc550edd5 --- /dev/null +++ b/tests/integration/recordings/responses/173ecb3aab28.json @@ -0,0 +1,251 @@ +{ + "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": "Message A: What is the capital of France?" + }, + { + "role": "assistant", + "content": "The capital of France is Paris." + }, + { + "role": "user", + "content": "Message B: What about Spain?" + }, + { + "role": "assistant", + "content": "The capital of Spain is Madrid." + }, + { + "role": "user", + "content": "Message C: And Italy?" + } + ], + "response_format": { + "type": "text" + }, + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-457", + "choices": [ + { + "delta": { + "content": "The", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": " capital", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": " Italy", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": " Rome", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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-457", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754090032, + "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/174458ad71b2.json b/tests/integration/recordings/responses/174458ad71b2.json index 109545580..2dcb85262 100644 --- a/tests/integration/recordings/responses/174458ad71b2.json +++ b/tests/integration/recordings/responses/174458ad71b2.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:02.537234214Z", + "created_at": "2025-08-01T23:12:53.580806Z", "done": true, "done_reason": "stop", - "total_duration": 1015701193, - "load_duration": 47423661, + "total_duration": 205732750, + "load_duration": 98967000, "prompt_eval_count": 213, - "prompt_eval_duration": 923910712, + "prompt_eval_duration": 86000000, "eval_count": 2, - "eval_duration": 43825530, + "eval_duration": 18000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/178016edef0e.json b/tests/integration/recordings/responses/178016edef0e.json index eeb807239..be545c221 100644 --- a/tests/integration/recordings/responses/178016edef0e.json +++ b/tests/integration/recordings/responses/178016edef0e.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:58:58.335054803Z", + "created_at": "2025-08-01T23:12:52.354566Z", "done": true, "done_reason": "stop", - "total_duration": 1092208348, - "load_duration": 45235490, + "total_duration": 605192500, + "load_duration": 457087166, "prompt_eval_count": 210, - "prompt_eval_duration": 872577650, + "prompt_eval_duration": 63000000, "eval_count": 5, - "eval_duration": 173862384, + "eval_duration": 84000000, "response": "unsafe\nS12", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/197228e26971.json b/tests/integration/recordings/responses/197228e26971.json index 2045c1e60..6c1730df2 100644 --- a/tests/integration/recordings/responses/197228e26971.json +++ b/tests/integration/recordings/responses/197228e26971.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:58:59.493522835Z", + "created_at": "2025-08-01T23:12:52.686478Z", "done": true, "done_reason": "stop", - "total_duration": 1148787184, - "load_duration": 42525776, + "total_duration": 304136208, + "load_duration": 155977000, "prompt_eval_count": 213, - "prompt_eval_duration": 933024346, + "prompt_eval_duration": 71000000, "eval_count": 5, - "eval_duration": 172702102, + "eval_duration": 76000000, "response": "unsafe\nS2", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/198ef7208389.json b/tests/integration/recordings/responses/198ef7208389.json index 1264a1d26..b196d3be2 100644 --- a/tests/integration/recordings/responses/198ef7208389.json +++ b/tests/integration/recordings/responses/198ef7208389.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:58:55.036336937Z", + "created_at": "2025-08-01T23:12:51.186501Z", "done": true, "done_reason": "stop", - "total_duration": 7465058538, - "load_duration": 4385384246, + "total_duration": 3146184459, + "load_duration": 2533467917, "prompt_eval_count": 212, - "prompt_eval_duration": 2899257826, + "prompt_eval_duration": 526000000, "eval_count": 5, - "eval_duration": 179706529, + "eval_duration": 83000000, "response": "unsafe\nS1", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/1adfaa0e062e.json b/tests/integration/recordings/responses/1adfaa0e062e.json index 295f101e6..5a3d44394 100644 --- a/tests/integration/recordings/responses/1adfaa0e062e.json +++ b/tests/integration/recordings/responses/1adfaa0e062e.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:01.511604644Z", + "created_at": "2025-08-01T23:12:53.332041Z", "done": true, "done_reason": "stop", - "total_duration": 1013469330, - "load_duration": 43788351, + "total_duration": 365895333, + "load_duration": 257825208, "prompt_eval_count": 213, - "prompt_eval_duration": 924367637, + "prompt_eval_duration": 78000000, "eval_count": 2, - "eval_duration": 44766715, + "eval_duration": 28000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/1b8394f90636.json b/tests/integration/recordings/responses/1b8394f90636.json index 8cf8a08f8..dd20132f4 100644 --- a/tests/integration/recordings/responses/1b8394f90636.json +++ b/tests/integration/recordings/responses/1b8394f90636.json @@ -22,15 +22,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:05.348866852Z", + "created_at": "2025-08-01T20:56:43.522189Z", "done": true, "done_reason": "stop", - "total_duration": 8992037446, - "load_duration": 46010833, + "total_duration": 2392200042, + "load_duration": 150986167, "prompt_eval_count": 18, - "prompt_eval_duration": 1464208894, + "prompt_eval_duration": 90000000, "eval_count": 43, - "eval_duration": 7481270003, + "eval_duration": 2150000000, "response": " _______.\n\nThe best answer is blue. The traditional nursery rhyme goes like this:\n\nRoses are red,\nViolets are blue,\nSugar is sweet,\nAnd so are you! (Or something similar.)", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/211b1562d4e6.json b/tests/integration/recordings/responses/211b1562d4e6.json index 6074d46a2..efbd2f1e6 100644 --- a/tests/integration/recordings/responses/211b1562d4e6.json +++ b/tests/integration/recordings/responses/211b1562d4e6.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:32.034301682Z", + "created_at": "2025-08-01T20:56:49.076962Z", "done": true, "done_reason": "stop", - "total_duration": 2744857982, - "load_duration": 42715044, + "total_duration": 321102500, + "load_duration": 20223000, "prompt_eval_count": 23, - "prompt_eval_duration": 1796728611, + "prompt_eval_duration": 72000000, "eval_count": 6, - "eval_duration": 904888348, + "eval_duration": 227000000, "response": "Humans live on Earth.", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/2afe3b38ca01.json b/tests/integration/recordings/responses/2afe3b38ca01.json index 13cbdd47a..4b5c82ad4 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-07-31T17:44:24.112976431Z", + "created_at": "2025-08-01T23:14:01.887809Z", "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-07-31T17:44:24.296397308Z", + "created_at": "2025-08-01T23:14:01.942369Z", "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-07-31T17:44:24.481740915Z", + "created_at": "2025-08-01T23:14:01.99605Z", "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-07-31T17:44:24.69085854Z", + "created_at": "2025-08-01T23:14:02.049974Z", "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-07-31T17:44:24.912926392Z", + "created_at": "2025-08-01T23:14:02.102027Z", "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-07-31T17:44:25.132377421Z", + "created_at": "2025-08-01T23:14:02.158416Z", "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-07-31T17:44:25.350113938Z", + "created_at": "2025-08-01T23:14:02.211753Z", "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-07-31T17:44:25.570117503Z", + "created_at": "2025-08-01T23:14:02.265564Z", "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-07-31T17:44:25.781633125Z", + "created_at": "2025-08-01T23:14:02.31618Z", "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-07-31T17:44:25.967547363Z", + "created_at": "2025-08-01T23:14:02.370325Z", "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-07-31T17:44:26.153858447Z", + "created_at": "2025-08-01T23:14:02.424667Z", "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-07-31T17:44:26.339696219Z", + "created_at": "2025-08-01T23:14:02.47913Z", "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-07-31T17:44:26.527991344Z", + "created_at": "2025-08-01T23:14:02.536984Z", "done": true, "done_reason": "stop", - "total_duration": 4477782788, - "load_duration": 41272054, + "total_duration": 1042724125, + "load_duration": 86161375, "prompt_eval_count": 399, - "prompt_eval_duration": 2019228112, + "prompt_eval_duration": 305000000, "eval_count": 13, - "eval_duration": 2416529563, + "eval_duration": 650000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/2d187a11704c.json b/tests/integration/recordings/responses/2d187a11704c.json index cfc07c895..fbfcb91f8 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-07-31T17:45:10.501556237Z", + "created_at": "2025-08-01T23:14:11.938867Z", "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-07-31T17:45:10.681603728Z", + "created_at": "2025-08-01T23:14:11.991247Z", "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-07-31T17:45:10.862378525Z", + "created_at": "2025-08-01T23:14:12.043953Z", "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-07-31T17:45:11.048405016Z", + "created_at": "2025-08-01T23:14:12.096001Z", "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-07-31T17:45:11.232090592Z", + "created_at": "2025-08-01T23:14:12.150454Z", "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-07-31T17:45:11.411960511Z", + "created_at": "2025-08-01T23:14:12.201249Z", "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-07-31T17:45:11.594645161Z", + "created_at": "2025-08-01T23:14:12.252534Z", "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-07-31T17:45:11.770984586Z", + "created_at": "2025-08-01T23:14:12.30063Z", "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-07-31T17:45:11.959640962Z", + "created_at": "2025-08-01T23:14:12.351034Z", "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-07-31T17:45:12.15150461Z", + "created_at": "2025-08-01T23:14:12.405032Z", "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-07-31T17:45:12.329179165Z", + "created_at": "2025-08-01T23:14:12.462645Z", "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-07-31T17:45:12.508407538Z", + "created_at": "2025-08-01T23:14:12.520337Z", "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-07-31T17:45:12.687572823Z", + "created_at": "2025-08-01T23:14:12.575809Z", "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-07-31T17:45:12.863560188Z", + "created_at": "2025-08-01T23:14:12.633724Z", "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-07-31T17:45:13.044545528Z", + "created_at": "2025-08-01T23:14:12.683133Z", "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-07-31T17:45:13.221961172Z", + "created_at": "2025-08-01T23:14:12.734309Z", "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-07-31T17:45:13.401324607Z", + "created_at": "2025-08-01T23:14:12.785917Z", "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-07-31T17:45:13.582305037Z", + "created_at": "2025-08-01T23:14:12.835705Z", "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-07-31T17:45:13.76376504Z", + "created_at": "2025-08-01T23:14:12.886509Z", "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-07-31T17:45:13.944303696Z", + "created_at": "2025-08-01T23:14:12.937134Z", "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-07-31T17:45:14.125163201Z", + "created_at": "2025-08-01T23:14:12.988532Z", "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-07-31T17:45:14.305006544Z", + "created_at": "2025-08-01T23:14:13.041798Z", "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-07-31T17:45:14.484481513Z", + "created_at": "2025-08-01T23:14:13.095443Z", "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-07-31T17:45:14.667407015Z", + "created_at": "2025-08-01T23:14:13.151402Z", "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-07-31T17:45:14.845425227Z", + "created_at": "2025-08-01T23:14:13.203462Z", "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-07-31T17:45:15.028728032Z", + "created_at": "2025-08-01T23:14:13.254567Z", "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-07-31T17:45:15.209162691Z", + "created_at": "2025-08-01T23:14:13.305865Z", "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-07-31T17:45:15.386536468Z", + "created_at": "2025-08-01T23:14:13.357658Z", "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-07-31T17:45:15.567411759Z", + "created_at": "2025-08-01T23:14:13.407773Z", "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-07-31T17:45:15.746245449Z", + "created_at": "2025-08-01T23:14:13.458919Z", "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-07-31T17:45:15.924864832Z", + "created_at": "2025-08-01T23:14:13.510456Z", "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-07-31T17:45:16.108171685Z", + "created_at": "2025-08-01T23:14:13.565948Z", "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-07-31T17:45:16.290545444Z", + "created_at": "2025-08-01T23:14:13.619155Z", "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-07-31T17:45:16.471500704Z", + "created_at": "2025-08-01T23:14:13.672754Z", "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-07-31T17:45:16.65171538Z", + "created_at": "2025-08-01T23:14:13.729473Z", "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-07-31T17:45:16.835027449Z", + "created_at": "2025-08-01T23:14:13.788666Z", "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-07-31T17:45:17.01515185Z", + "created_at": "2025-08-01T23:14:13.850575Z", "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-07-31T17:45:17.195610049Z", + "created_at": "2025-08-01T23:14:13.904807Z", "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-07-31T17:45:17.374675826Z", + "created_at": "2025-08-01T23:14:13.958524Z", "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-07-31T17:45:17.554298267Z", + "created_at": "2025-08-01T23:14:14.011742Z", "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-07-31T17:45:17.737527818Z", + "created_at": "2025-08-01T23:14:14.064933Z", "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-07-31T17:45:17.918877822Z", + "created_at": "2025-08-01T23:14:14.116454Z", "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-07-31T17:45:18.105911231Z", + "created_at": "2025-08-01T23:14:14.172682Z", "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-07-31T17:45:18.283923436Z", + "created_at": "2025-08-01T23:14:14.227654Z", "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-07-31T17:45:18.459719394Z", + "created_at": "2025-08-01T23:14:14.282068Z", "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-07-31T17:45:18.640906341Z", + "created_at": "2025-08-01T23:14:14.334565Z", "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-07-31T17:45:18.826961086Z", + "created_at": "2025-08-01T23:14:14.383532Z", "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-07-31T17:45:19.003320248Z", + "created_at": "2025-08-01T23:14:14.432138Z", "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-07-31T17:45:19.182881734Z", + "created_at": "2025-08-01T23:14:14.480995Z", "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-07-31T17:45:19.359495992Z", + "created_at": "2025-08-01T23:14:14.531968Z", "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-07-31T17:45:19.537161501Z", + "created_at": "2025-08-01T23:14:14.584044Z", "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-07-31T17:45:19.717797841Z", + "created_at": "2025-08-01T23:14:14.635691Z", "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-07-31T17:45:19.897791992Z", + "created_at": "2025-08-01T23:14:14.68837Z", "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-07-31T17:45:20.078554441Z", + "created_at": "2025-08-01T23:14:14.73985Z", "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-07-31T17:45:20.256647775Z", + "created_at": "2025-08-01T23:14:14.792412Z", "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-07-31T17:45:20.435851722Z", + "created_at": "2025-08-01T23:14:14.845872Z", "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-07-31T17:45:20.614887157Z", + "created_at": "2025-08-01T23:14:14.900102Z", "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-07-31T17:45:20.792750108Z", + "created_at": "2025-08-01T23:14:14.954589Z", "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-07-31T17:45:20.97316853Z", + "created_at": "2025-08-01T23:14:15.006629Z", "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-07-31T17:45:21.151001292Z", + "created_at": "2025-08-01T23:14:15.058561Z", "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-07-31T17:45:21.329346225Z", + "created_at": "2025-08-01T23:14:15.111954Z", "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-07-31T17:45:21.504478824Z", + "created_at": "2025-08-01T23:14:15.169173Z", "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-07-31T17:45:21.684098768Z", + "created_at": "2025-08-01T23:14:15.222569Z", "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-07-31T17:45:21.859984956Z", + "created_at": "2025-08-01T23:14:15.275795Z", "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-07-31T17:45:22.039452807Z", + "created_at": "2025-08-01T23:14:15.3327Z", "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-07-31T17:45:22.215880487Z", + "created_at": "2025-08-01T23:14:15.389931Z", "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-07-31T17:45:22.394139356Z", + "created_at": "2025-08-01T23:14:15.442349Z", "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-07-31T17:45:22.570525681Z", + "created_at": "2025-08-01T23:14:15.494175Z", "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-07-31T17:45:22.749431991Z", + "created_at": "2025-08-01T23:14:15.545764Z", "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-07-31T17:45:22.925115527Z", + "created_at": "2025-08-01T23:14:15.599099Z", "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-07-31T17:45:23.101143142Z", + "created_at": "2025-08-01T23:14:15.649852Z", "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-07-31T17:45:23.27672205Z", + "created_at": "2025-08-01T23:14:15.698222Z", "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-07-31T17:45:23.454962118Z", + "created_at": "2025-08-01T23:14:15.747168Z", "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-07-31T17:45:23.632398162Z", + "created_at": "2025-08-01T23:14:15.797196Z", "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-07-31T17:45:23.809693128Z", + "created_at": "2025-08-01T23:14:15.845587Z", "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-07-31T17:45:23.986707624Z", + "created_at": "2025-08-01T23:14:15.897171Z", "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-07-31T17:45:24.166677843Z", + "created_at": "2025-08-01T23:14:15.944524Z", "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-07-31T17:45:24.346964308Z", + "created_at": "2025-08-01T23:14:15.994467Z", "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-07-31T17:45:24.5291978Z", + "created_at": "2025-08-01T23:14:16.045224Z", "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-07-31T17:45:24.706691694Z", + "created_at": "2025-08-01T23:14:16.093853Z", "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-07-31T17:45:24.88460415Z", + "created_at": "2025-08-01T23:14:16.144847Z", "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-07-31T17:45:25.065539114Z", + "created_at": "2025-08-01T23:14:16.197888Z", "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-07-31T17:45:25.243710072Z", + "created_at": "2025-08-01T23:14:16.250854Z", "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-07-31T17:45:25.422103246Z", + "created_at": "2025-08-01T23:14:16.301995Z", "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-07-31T17:45:25.600249999Z", + "created_at": "2025-08-01T23:14:16.352508Z", "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-07-31T17:45:25.780448009Z", + "created_at": "2025-08-01T23:14:16.40259Z", "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-07-31T17:45:25.958982616Z", + "created_at": "2025-08-01T23:14:16.453514Z", "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-07-31T17:45:26.138676515Z", + "created_at": "2025-08-01T23:14:16.50378Z", "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-07-31T17:45:26.314631321Z", + "created_at": "2025-08-01T23:14:16.554395Z", "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-07-31T17:45:26.494578612Z", + "created_at": "2025-08-01T23:14:16.605795Z", "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-07-31T17:45:26.673360876Z", + "created_at": "2025-08-01T23:14:16.656313Z", "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-07-31T17:45:26.854225873Z", + "created_at": "2025-08-01T23:14:16.706438Z", "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-07-31T17:45:27.02961726Z", + "created_at": "2025-08-01T23:14:16.756444Z", "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-07-31T17:45:27.208399033Z", + "created_at": "2025-08-01T23:14:16.807687Z", "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-07-31T17:45:27.386827403Z", + "created_at": "2025-08-01T23:14:16.85835Z", "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-07-31T17:45:27.567038363Z", + "created_at": "2025-08-01T23:14:16.909311Z", "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-07-31T17:45:27.746885334Z", + "created_at": "2025-08-01T23:14:16.959327Z", "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-07-31T17:45:27.922875436Z", + "created_at": "2025-08-01T23:14:17.010211Z", "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-07-31T17:45:28.101430863Z", + "created_at": "2025-08-01T23:14:17.061365Z", "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-07-31T17:45:28.278640455Z", + "created_at": "2025-08-01T23:14:17.111956Z", "done": true, "done_reason": "stop", - "total_duration": 19952737777, - "load_duration": 43350760, + "total_duration": 5499672375, + "load_duration": 58161750, "prompt_eval_count": 36, - "prompt_eval_duration": 2130287337, + "prompt_eval_duration": 266000000, "eval_count": 100, - "eval_duration": 17778591810, + "eval_duration": 5174000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/325a72db5755.json b/tests/integration/recordings/responses/325a72db5755.json new file mode 100644 index 000000000..a41db435b --- /dev/null +++ b/tests/integration/recordings/responses/325a72db5755.json @@ -0,0 +1,544 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "What is the name of the US captial?" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-312", + "choices": [ + { + "delta": { + "content": "The", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " capital", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " United", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " States", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " Washington", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": " D", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081853, + "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-312", + "choices": [ + { + "delta": { + "content": ".C", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": "short", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": " District", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": " Columbia", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": ").", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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-312", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754081854, + "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/3c3f13cb7794.json b/tests/integration/recordings/responses/3c3f13cb7794.json index 3ee40ec59..84097c455 100644 --- a/tests/integration/recordings/responses/3c3f13cb7794.json +++ b/tests/integration/recordings/responses/3c3f13cb7794.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:33.397554906Z", + "created_at": "2025-08-01T20:56:49.287573Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,7 +39,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:33.586274792Z", + "created_at": "2025-08-01T20:56:49.341788Z", "done": false, "done_reason": null, "total_duration": null, @@ -57,7 +57,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:33.765410961Z", + "created_at": "2025-08-01T20:56:49.388655Z", "done": false, "done_reason": null, "total_duration": null, @@ -75,7 +75,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:33.943915332Z", + "created_at": "2025-08-01T20:56:49.43929Z", "done": false, "done_reason": null, "total_duration": null, @@ -93,7 +93,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:34.129095862Z", + "created_at": "2025-08-01T20:56:49.485696Z", "done": false, "done_reason": null, "total_duration": null, @@ -111,7 +111,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:34.311777808Z", + "created_at": "2025-08-01T20:56:49.533286Z", "done": false, "done_reason": null, "total_duration": null, @@ -129,7 +129,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:34.494210854Z", + "created_at": "2025-08-01T20:56:49.578007Z", "done": false, "done_reason": null, "total_duration": null, @@ -147,7 +147,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:34.678960603Z", + "created_at": "2025-08-01T20:56:49.623059Z", "done": false, "done_reason": null, "total_duration": null, @@ -165,7 +165,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:34.8612541Z", + "created_at": "2025-08-01T20:56:49.669478Z", "done": false, "done_reason": null, "total_duration": null, @@ -183,7 +183,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:35.046305051Z", + "created_at": "2025-08-01T20:56:49.715842Z", "done": false, "done_reason": null, "total_duration": null, @@ -201,15 +201,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:35.234671072Z", + "created_at": "2025-08-01T20:56:49.760345Z", "done": true, "done_reason": "stop", - "total_duration": 3173172688, - "load_duration": 41807088, + "total_duration": 624960709, + "load_duration": 59848000, "prompt_eval_count": 26, - "prompt_eval_duration": 1292827697, + "prompt_eval_duration": 87000000, "eval_count": 11, - "eval_duration": 1837992731, + "eval_duration": 476000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/3ca695048bee.json b/tests/integration/recordings/responses/3ca695048bee.json new file mode 100644 index 000000000..bed6762e7 --- /dev/null +++ b/tests/integration/recordings/responses/3ca695048bee.json @@ -0,0 +1,104 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "What's the weather in Tokyo? Use the get_weather function to get the weather." + } + ], + "stream": true, + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the weather in a given city", + "parameters": { + "type": "object", + "properties": { + "city": { + "type": "string", + "description": "The city to get the weather for" + } + } + } + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-490", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": [ + { + "index": 0, + "id": "call_rolv1ozt", + "function": { + "arguments": "{\"city\":\"Tokyo\"}", + "name": "get_weather" + }, + "type": "function" + } + ] + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081852, + "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-490", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754081852, + "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/40f524d1934a.json b/tests/integration/recordings/responses/40f524d1934a.json index 834fb6a74..1c073c5ea 100644 --- a/tests/integration/recordings/responses/40f524d1934a.json +++ b/tests/integration/recordings/responses/40f524d1934a.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:04.749672905Z", + "created_at": "2025-08-01T20:56:51.314693Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,7 +39,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:04.935716874Z", + "created_at": "2025-08-01T20:56:51.362989Z", "done": false, "done_reason": null, "total_duration": null, @@ -57,7 +57,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:05.124992167Z", + "created_at": "2025-08-01T20:56:51.408403Z", "done": false, "done_reason": null, "total_duration": null, @@ -75,7 +75,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:05.313306567Z", + "created_at": "2025-08-01T20:56:51.455832Z", "done": false, "done_reason": null, "total_duration": null, @@ -93,7 +93,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:05.496860421Z", + "created_at": "2025-08-01T20:56:51.50384Z", "done": false, "done_reason": null, "total_duration": null, @@ -111,7 +111,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:05.682903521Z", + "created_at": "2025-08-01T20:56:51.552257Z", "done": false, "done_reason": null, "total_duration": null, @@ -129,7 +129,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:05.868324667Z", + "created_at": "2025-08-01T20:56:51.599938Z", "done": false, "done_reason": null, "total_duration": null, @@ -147,7 +147,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:06.061112692Z", + "created_at": "2025-08-01T20:56:51.645807Z", "done": false, "done_reason": null, "total_duration": null, @@ -165,7 +165,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:06.268369491Z", + "created_at": "2025-08-01T20:56:51.694632Z", "done": false, "done_reason": null, "total_duration": null, @@ -183,7 +183,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:06.47768613Z", + "created_at": "2025-08-01T20:56:51.743454Z", "done": false, "done_reason": null, "total_duration": null, @@ -201,15 +201,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:06.671958182Z", + "created_at": "2025-08-01T20:56:51.790525Z", "done": true, "done_reason": "stop", - "total_duration": 2151822386, - "load_duration": 44157323, + "total_duration": 687242541, + "load_duration": 131028916, "prompt_eval_count": 324, - "prompt_eval_duration": 183972482, + "prompt_eval_duration": 76000000, "eval_count": 11, - "eval_duration": 1923143597, + "eval_duration": 479000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/48d2fb183a2a.json b/tests/integration/recordings/responses/48d2fb183a2a.json index 5b72b9745..2a81a67af 100644 --- a/tests/integration/recordings/responses/48d2fb183a2a.json +++ b/tests/integration/recordings/responses/48d2fb183a2a.json @@ -67,15 +67,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:55:30.590990089Z", + "created_at": "2025-08-01T20:57:11.058922Z", "done": true, "done_reason": "stop", - "total_duration": 32260966927, - "load_duration": 43969344, + "total_duration": 3810519000, + "load_duration": 148409834, "prompt_eval_count": 259, - "prompt_eval_duration": 21518828528, + "prompt_eval_duration": 635000000, "eval_count": 60, - "eval_duration": 10697338625, + "eval_duration": 3025000000, "response": "{\n \"first_name\": \"Michael\",\n \"last_name\": \"Jordan\",\n \"year_of_birth\": 1963,\n \"nba_stats\": {\n \"year_for_draft\": 1984,\n \"num_seasons_in_nba\": 15\n }\n}", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/4a3a4447b16b.json b/tests/integration/recordings/responses/4a3a4447b16b.json index 45d4cfe51..91feb5c43 100644 --- a/tests/integration/recordings/responses/4a3a4447b16b.json +++ b/tests/integration/recordings/responses/4a3a4447b16b.json @@ -14,7 +14,7 @@ "models": [ { "model": "nomic-embed-text:latest", - "modified_at": "2025-07-31T17:43:12.217040Z", + "modified_at": "2025-08-01T16:13:37.801531-07:00", "digest": "0a109f422b47e3a30ba2b10eca18548e944e8a23073ee3f3e947efcf3c45e59f", "size": 274302450, "details": { @@ -30,7 +30,7 @@ }, { "model": "llama-guard3:1b", - "modified_at": "2025-07-31T04:44:58Z", + "modified_at": "2025-08-01T15:46:28.963517-07:00", "digest": "494147e06bf99e10dbe67b63a07ac81c162f18ef3341aa3390007ac828571b3b", "size": 1600181919, "details": { @@ -46,7 +46,7 @@ }, { "model": "all-minilm:l6-v2", - "modified_at": "2025-07-31T04:42:15Z", + "modified_at": "2025-07-29T15:07:06.295748-07:00", "digest": "1b226e2802dbb772b5fc32a58f103ca1804ef7501331012de126ab22f67475ef", "size": 45960996, "details": { @@ -60,9 +60,41 @@ "quantization_level": "F16" } }, + { + "model": "all-minilm:latest", + "modified_at": "2025-06-04T12:06:43.990073-07:00", + "digest": "1b226e2802dbb772b5fc32a58f103ca1804ef7501331012de126ab22f67475ef", + "size": 45960996, + "details": { + "parent_model": "", + "format": "gguf", + "family": "bert", + "families": [ + "bert" + ], + "parameter_size": "23M", + "quantization_level": "F16" + } + }, + { + "model": "llama3.1:8b-instruct-fp16", + "modified_at": "2025-02-14T15:23:24.865395-08:00", + "digest": "4aacac4194543ff7f70dab3f2ebc169c132d5319bb36f7a7e99c4ff525ebcc09", + "size": 16068910253, + "details": { + "parent_model": "", + "format": "gguf", + "family": "llama", + "families": [ + "llama" + ], + "parameter_size": "8.0B", + "quantization_level": "F16" + } + }, { "model": "llama3.2:3b-instruct-fp16", - "modified_at": "2025-07-31T04:42:05Z", + "modified_at": "2025-01-21T13:46:43.514008-08:00", "digest": "195a8c01d91ec3cb1e0aad4624a51f2602c51fa7d96110f8ab5a20c84081804d", "size": 6433703586, "details": { diff --git a/tests/integration/recordings/responses/50340cd4d253.json b/tests/integration/recordings/responses/50340cd4d253.json index b6210ee79..f35923c06 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-07-31T17:45:36.538134237Z", + "created_at": "2025-08-01T23:14:19.298378Z", "done": true, "done_reason": "stop", - "total_duration": 2796712434, - "load_duration": 44874416, + "total_duration": 266786083, + "load_duration": 53820458, "prompt_eval_count": 216, - "prompt_eval_duration": 2709689823, + "prompt_eval_duration": 192000000, "eval_count": 2, - "eval_duration": 41625474, + "eval_duration": 17000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/545d86510a80.json b/tests/integration/recordings/responses/545d86510a80.json index cbc2ad98b..8126fd241 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-07-31T17:48:08.291262469Z", + "created_at": "2025-08-01T23:14:38.59711Z", "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-07-31T17:48:08.482518171Z", + "created_at": "2025-08-01T23:14:38.671294Z", "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-07-31T17:48:08.67196398Z", + "created_at": "2025-08-01T23:14:38.736161Z", "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-07-31T17:48:08.854871756Z", + "created_at": "2025-08-01T23:14:38.809857Z", "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-07-31T17:48:09.039123774Z", + "created_at": "2025-08-01T23:14:38.883599Z", "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-07-31T17:48:09.22769491Z", + "created_at": "2025-08-01T23:14:38.942471Z", "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-07-31T17:48:09.41528678Z", + "created_at": "2025-08-01T23:14:38.999844Z", "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-07-31T17:48:09.616301386Z", + "created_at": "2025-08-01T23:14:39.050862Z", "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-07-31T17:48:09.800460611Z", + "created_at": "2025-08-01T23:14:39.104589Z", "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-07-31T17:48:09.986683207Z", + "created_at": "2025-08-01T23:14:39.158301Z", "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-07-31T17:48:10.17267686Z", + "created_at": "2025-08-01T23:14:39.210985Z", "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-07-31T17:48:10.358862363Z", + "created_at": "2025-08-01T23:14:39.263525Z", "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-07-31T17:48:10.546042909Z", + "created_at": "2025-08-01T23:14:39.314455Z", "done": true, "done_reason": "stop", - "total_duration": 4336248519, - "load_duration": 45632644, + "total_duration": 914060542, + "load_duration": 63705209, "prompt_eval_count": 408, - "prompt_eval_duration": 2034392149, + "prompt_eval_duration": 95000000, "eval_count": 13, - "eval_duration": 2255671980, + "eval_duration": 753000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/554de3cd986f.json b/tests/integration/recordings/responses/554de3cd986f.json index 644a689ff..990de1928 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-07-31T17:44:35.603264527Z", + "created_at": "2025-08-01T23:14:04.40585Z", "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-07-31T17:44:35.78602068Z", + "created_at": "2025-08-01T23:14:04.455647Z", "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-07-31T17:44:35.96866699Z", + "created_at": "2025-08-01T23:14:04.509581Z", "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-07-31T17:44:36.150414646Z", + "created_at": "2025-08-01T23:14:04.56592Z", "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-07-31T17:44:36.333587619Z", + "created_at": "2025-08-01T23:14:04.616979Z", "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-07-31T17:44:36.518108567Z", + "created_at": "2025-08-01T23:14:04.671413Z", "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-07-31T17:44:36.701519577Z", + "created_at": "2025-08-01T23:14:04.725494Z", "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-07-31T17:44:36.887968019Z", + "created_at": "2025-08-01T23:14:04.779905Z", "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-07-31T17:44:37.070912948Z", + "created_at": "2025-08-01T23:14:04.829791Z", "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-07-31T17:44:37.255400593Z", + "created_at": "2025-08-01T23:14:04.880729Z", "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-07-31T17:44:37.435774155Z", + "created_at": "2025-08-01T23:14:04.93338Z", "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-07-31T17:44:37.614737276Z", + "created_at": "2025-08-01T23:14:04.981714Z", "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-07-31T17:44:37.79509715Z", + "created_at": "2025-08-01T23:14:05.036068Z", "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-07-31T17:44:37.976454651Z", + "created_at": "2025-08-01T23:14:05.088069Z", "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-07-31T17:44:38.157671144Z", + "created_at": "2025-08-01T23:14:05.144485Z", "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-07-31T17:44:38.337351473Z", + "created_at": "2025-08-01T23:14:05.203042Z", "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-07-31T17:44:38.517835532Z", + "created_at": "2025-08-01T23:14:05.257133Z", "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-07-31T17:44:38.700974215Z", + "created_at": "2025-08-01T23:14:05.311623Z", "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-07-31T17:44:38.884515807Z", + "created_at": "2025-08-01T23:14:05.370124Z", "done": true, "done_reason": "stop", - "total_duration": 6189734480, - "load_duration": 41239564, + "total_duration": 1532801458, + "load_duration": 213911041, "prompt_eval_count": 376, - "prompt_eval_duration": 2865253062, + "prompt_eval_duration": 350000000, "eval_count": 19, - "eval_duration": 3282706083, + "eval_duration": 967000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6906a6e71988.json b/tests/integration/recordings/responses/6906a6e71988.json index 44ae5c0eb..9d4125823 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-07-31T17:45:33.679033503Z", + "created_at": "2025-08-01T23:14:18.886381Z", "done": true, "done_reason": "stop", - "total_duration": 4349645498, - "load_duration": 42994476, + "total_duration": 488566500, + "load_duration": 113477291, "prompt_eval_count": 317, - "prompt_eval_duration": 4262865760, + "prompt_eval_duration": 361000000, "eval_count": 2, - "eval_duration": 43296572, + "eval_duration": 12000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6cc063bbd7d3.json b/tests/integration/recordings/responses/6cc063bbd7d3.json index 161ca1071..516a2797b 100644 --- a/tests/integration/recordings/responses/6cc063bbd7d3.json +++ b/tests/integration/recordings/responses/6cc063bbd7d3.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:51.813281519Z", + "created_at": "2025-08-01T20:57:20.7568Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,7 +39,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:51.989711694Z", + "created_at": "2025-08-01T20:57:20.808114Z", "done": false, "done_reason": null, "total_duration": null, @@ -57,7 +57,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:52.166114062Z", + "created_at": "2025-08-01T20:57:20.862297Z", "done": false, "done_reason": null, "total_duration": null, @@ -75,7 +75,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:52.343105056Z", + "created_at": "2025-08-01T20:57:20.910323Z", "done": false, "done_reason": null, "total_duration": null, @@ -93,7 +93,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:52.520952283Z", + "created_at": "2025-08-01T20:57:20.95935Z", "done": false, "done_reason": null, "total_duration": null, @@ -111,7 +111,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:52.698509394Z", + "created_at": "2025-08-01T20:57:21.013354Z", "done": false, "done_reason": null, "total_duration": null, @@ -129,7 +129,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:52.874946532Z", + "created_at": "2025-08-01T20:57:21.07322Z", "done": false, "done_reason": null, "total_duration": null, @@ -147,7 +147,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.056294341Z", + "created_at": "2025-08-01T20:57:21.131785Z", "done": false, "done_reason": null, "total_duration": null, @@ -165,7 +165,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.236117913Z", + "created_at": "2025-08-01T20:57:21.180306Z", "done": false, "done_reason": null, "total_duration": null, @@ -183,7 +183,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.414303003Z", + "created_at": "2025-08-01T20:57:21.230096Z", "done": false, "done_reason": null, "total_duration": null, @@ -201,7 +201,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.59508044Z", + "created_at": "2025-08-01T20:57:21.281864Z", "done": false, "done_reason": null, "total_duration": null, @@ -219,7 +219,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.77302497Z", + "created_at": "2025-08-01T20:57:21.335153Z", "done": false, "done_reason": null, "total_duration": null, @@ -237,7 +237,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:53.952164995Z", + "created_at": "2025-08-01T20:57:21.388394Z", "done": false, "done_reason": null, "total_duration": null, @@ -255,7 +255,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:54.138962187Z", + "created_at": "2025-08-01T20:57:21.441268Z", "done": false, "done_reason": null, "total_duration": null, @@ -273,7 +273,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:54.316918504Z", + "created_at": "2025-08-01T20:57:21.493573Z", "done": false, "done_reason": null, "total_duration": null, @@ -291,7 +291,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:54.494254106Z", + "created_at": "2025-08-01T20:57:21.543884Z", "done": false, "done_reason": null, "total_duration": null, @@ -309,7 +309,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:54.675122971Z", + "created_at": "2025-08-01T20:57:21.592363Z", "done": false, "done_reason": null, "total_duration": null, @@ -327,7 +327,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:54.849660284Z", + "created_at": "2025-08-01T20:57:21.640596Z", "done": false, "done_reason": null, "total_duration": null, @@ -345,7 +345,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:55.027127762Z", + "created_at": "2025-08-01T20:57:21.687018Z", "done": false, "done_reason": null, "total_duration": null, @@ -363,15 +363,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:55.201988285Z", + "created_at": "2025-08-01T20:57:21.73497Z", "done": true, "done_reason": "stop", - "total_duration": 4724422329, - "load_duration": 43306862, + "total_duration": 1139022875, + "load_duration": 78012000, "prompt_eval_count": 26, - "prompt_eval_duration": 1291013267, + "prompt_eval_duration": 75000000, "eval_count": 20, - "eval_duration": 3389578393, + "eval_duration": 984000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6d35c91287e2.json b/tests/integration/recordings/responses/6d35c91287e2.json index dbcc6c470..699493f45 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-07-31T17:46:20.369406477Z", + "created_at": "2025-08-01T23:14:22.362667Z", "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-07-31T17:46:20.5518691Z", + "created_at": "2025-08-01T23:14:22.427435Z", "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-07-31T17:46:20.736317928Z", + "created_at": "2025-08-01T23:14:22.484198Z", "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-07-31T17:46:20.930122964Z", + "created_at": "2025-08-01T23:14:22.537031Z", "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-07-31T17:46:21.125702287Z", + "created_at": "2025-08-01T23:14:22.591198Z", "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-07-31T17:46:21.317606091Z", + "created_at": "2025-08-01T23:14:22.643336Z", "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-07-31T17:46:21.507713677Z", + "created_at": "2025-08-01T23:14:22.698589Z", "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-07-31T17:46:21.695066353Z", + "created_at": "2025-08-01T23:14:22.752904Z", "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-07-31T17:46:21.891869708Z", + "created_at": "2025-08-01T23:14:22.804Z", "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-07-31T17:46:22.085099601Z", + "created_at": "2025-08-01T23:14:22.855633Z", "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-07-31T17:46:22.269187077Z", + "created_at": "2025-08-01T23:14:22.906918Z", "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-07-31T17:46:22.453591089Z", + "created_at": "2025-08-01T23:14:22.958729Z", "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-07-31T17:46:22.638173365Z", + "created_at": "2025-08-01T23:14:23.011279Z", "done": true, "done_reason": "stop", - "total_duration": 4335218946, - "load_duration": 40997571, + "total_duration": 793500292, + "load_duration": 55339750, "prompt_eval_count": 417, - "prompt_eval_duration": 2023436216, + "prompt_eval_duration": 83000000, "eval_count": 13, - "eval_duration": 2270231002, + "eval_duration": 653000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6f96090aa955.json b/tests/integration/recordings/responses/6f96090aa955.json new file mode 100644 index 000000000..d5131d389 --- /dev/null +++ b/tests/integration/recordings/responses/6f96090aa955.json @@ -0,0 +1,648 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "Hello, world!" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-333", + "choices": [ + { + "delta": { + "content": "Hello", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": "!", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": " Welcome", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": " our", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": " conversation", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081849, + "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-333", + "choices": [ + { + "delta": { + "content": " Is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " there", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " something", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " can", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " help", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " or", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " would", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " you", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " like", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": " chat", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": "?", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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-333", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754081850, + "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/6fbea1abca7c.json b/tests/integration/recordings/responses/6fbea1abca7c.json index 62f182d3c..576fc7de1 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-07-31T17:46:08.878347326Z", + "created_at": "2025-08-01T23:14:20.337763Z", "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-07-31T17:46:09.062828335Z", + "created_at": "2025-08-01T23:14:20.394358Z", "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-07-31T17:46:09.243638066Z", + "created_at": "2025-08-01T23:14:20.451349Z", "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-07-31T17:46:09.423285311Z", + "created_at": "2025-08-01T23:14:20.504443Z", "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-07-31T17:46:09.606591486Z", + "created_at": "2025-08-01T23:14:20.555779Z", "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-07-31T17:46:09.78961117Z", + "created_at": "2025-08-01T23:14:20.607807Z", "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-07-31T17:46:09.970261883Z", + "created_at": "2025-08-01T23:14:20.660627Z", "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-07-31T17:46:10.154172091Z", + "created_at": "2025-08-01T23:14:20.711562Z", "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-07-31T17:46:10.340795908Z", + "created_at": "2025-08-01T23:14:20.761822Z", "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-07-31T17:46:10.526545522Z", + "created_at": "2025-08-01T23:14:20.81712Z", "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-07-31T17:46:10.714952054Z", + "created_at": "2025-08-01T23:14:20.868755Z", "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-07-31T17:46:10.910927483Z", + "created_at": "2025-08-01T23:14:20.921049Z", "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-07-31T17:46:11.095386909Z", + "created_at": "2025-08-01T23:14:20.973584Z", "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-07-31T17:46:11.281660364Z", + "created_at": "2025-08-01T23:14:21.030707Z", "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-07-31T17:46:11.464474672Z", + "created_at": "2025-08-01T23:14:21.082015Z", "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-07-31T17:46:11.650350705Z", + "created_at": "2025-08-01T23:14:21.132945Z", "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-07-31T17:46:11.834464866Z", + "created_at": "2025-08-01T23:14:21.187452Z", "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-07-31T17:46:12.019307704Z", + "created_at": "2025-08-01T23:14:21.239827Z", "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-07-31T17:46:12.209293507Z", + "created_at": "2025-08-01T23:14:21.294154Z", "done": true, "done_reason": "stop", - "total_duration": 35638042382, - "load_duration": 48273168, + "total_duration": 1929211666, + "load_duration": 61298666, "prompt_eval_count": 386, - "prompt_eval_duration": 32256935234, + "prompt_eval_duration": 908000000, "eval_count": 19, - "eval_duration": 3332216342, + "eval_duration": 959000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/6fe1d4fedf12.json b/tests/integration/recordings/responses/6fe1d4fedf12.json new file mode 100644 index 000000000..4db74b4e9 --- /dev/null +++ b/tests/integration/recordings/responses/6fe1d4fedf12.json @@ -0,0 +1,4603 @@ +{ + "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 weather in Tokyo?" + } + ], + "response_format": { + "type": "text" + }, + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-751", + "choices": [ + { + "delta": { + "content": "I", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": " don", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": "'t", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": " have", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": " real", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": "-time", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090066, + "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-751", + "choices": [ + { + "delta": { + "content": " access", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " current", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " conditions", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " However", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " can", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " provide", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " general", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " information", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " about", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " Tokyo", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": "'s", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " climate", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": ".\n\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": "Tok", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": "yo", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090067, + "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-751", + "choices": [ + { + "delta": { + "content": " has", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " humid", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " subt", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": "ropical", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " climate", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " distinct", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " seasons", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": ":\n\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": "*", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " Spring", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": "March", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " May", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": "):", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " Mild", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " temperatures", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090068, + "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-751", + "choices": [ + { + "delta": { + "content": " ranging", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " from", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "10", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "20", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0C", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "50", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "68", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0F", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "),", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " occasional", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " rain", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " showers", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": ".\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": "*", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090069, + "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-751", + "choices": [ + { + "delta": { + "content": " Summer", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "June", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " August", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "):", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " Hot", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " humid", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " average", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " high", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " temperatures", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " around", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "28", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "30", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0C", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090070, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "82", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "86", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0F", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": ").\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "*", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " Autumn", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "September", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " November", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "):", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " Comfort", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": "able", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " temperatures", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " ranging", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " from", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090071, + "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-751", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "10", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "25", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0C", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "50", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "77", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0F", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "),", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " gentle", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " rainfall", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": ".\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "*", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " Winter", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": "December", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090072, + "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-751", + "choices": [ + { + "delta": { + "content": " February", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "):", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " Cool", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " temperatures", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " averaging", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " around", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " ", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "0", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "10", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0C", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " (", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "32", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "-", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "50", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "\u00b0F", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": "),", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " with", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090073, + "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-751", + "choices": [ + { + "delta": { + "content": " occasional", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " cold", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " snaps", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": ".\n\n", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": "For", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " most", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " up", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": "-to", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": "-date", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " information", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " I", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " recommend", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " checking", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " reliable", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " website", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090074, + "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-751", + "choices": [ + { + "delta": { + "content": " or", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " app", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " such", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " as", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " Acc", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": "u", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": "Weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " or", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": " Weather", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": ".com", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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-751", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754090075, + "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/70adef2c30c4.json b/tests/integration/recordings/responses/70adef2c30c4.json index fe1697d6f..1aa7434ae 100644 --- a/tests/integration/recordings/responses/70adef2c30c4.json +++ b/tests/integration/recordings/responses/70adef2c30c4.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:50.453323367Z", + "created_at": "2025-08-01T20:57:20.567617Z", "done": true, "done_reason": "stop", - "total_duration": 14856284585, - "load_duration": 44791770, + "total_duration": 3565468958, + "load_duration": 31098250, "prompt_eval_count": 30, - "prompt_eval_duration": 2452957312, + "prompt_eval_duration": 77000000, "eval_count": 70, - "eval_duration": 12358070057, + "eval_duration": 3456000000, "response": "The answer is Saturn! Saturn's ring system is one of the most iconic and well-known in our solar system. The rings are made up of ice particles, rock debris, and dust that orbit around the planet due to its gravitational pull.\n\nWould you like to know more about Saturn's rings or is there something else I can help you with?", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/75d0dd9d0fa3.json b/tests/integration/recordings/responses/75d0dd9d0fa3.json index 65225a11e..3ba4834f1 100644 --- a/tests/integration/recordings/responses/75d0dd9d0fa3.json +++ b/tests/integration/recordings/responses/75d0dd9d0fa3.json @@ -45,15 +45,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:29.277838934Z", + "created_at": "2025-08-01T20:56:48.732625Z", "done": true, "done_reason": "stop", - "total_duration": 15295815581, - "load_duration": 42102876, + "total_duration": 1710455750, + "load_duration": 47968625, "prompt_eval_count": 119, - "prompt_eval_duration": 9859380831, + "prompt_eval_duration": 223000000, "eval_count": 29, - "eval_duration": 5393566178, + "eval_duration": 1437000000, "response": "{ \"name\": \"Michael Jordan\", \"year_born\": \"1963\", \"year_retired\": \"2003\"}\n ", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/7b4815aba6c5.json b/tests/integration/recordings/responses/7b4815aba6c5.json index f8f55d673..2843b8a9c 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-07-31T17:44:12.691972914Z", + "created_at": "2025-08-01T23:13:59.222059Z", "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-07-31T17:44:12.873445514Z", + "created_at": "2025-08-01T23:13:59.273466Z", "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-07-31T17:44:13.058391013Z", + "created_at": "2025-08-01T23:13:59.325562Z", "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-07-31T17:44:13.241305582Z", + "created_at": "2025-08-01T23:13:59.379223Z", "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-07-31T17:44:13.426830341Z", + "created_at": "2025-08-01T23:13:59.436435Z", "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-07-31T17:44:13.613434143Z", + "created_at": "2025-08-01T23:13:59.48928Z", "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-07-31T17:44:13.798507122Z", + "created_at": "2025-08-01T23:13:59.547102Z", "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-07-31T17:44:13.985391256Z", + "created_at": "2025-08-01T23:13:59.60579Z", "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-07-31T17:44:14.168605602Z", + "created_at": "2025-08-01T23:13:59.660149Z", "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-07-31T17:44:14.348657505Z", + "created_at": "2025-08-01T23:13:59.719166Z", "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-07-31T17:44:14.536885315Z", + "created_at": "2025-08-01T23:13:59.773893Z", "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-07-31T17:44:14.721523959Z", + "created_at": "2025-08-01T23:13:59.827636Z", "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-07-31T17:44:14.905534546Z", + "created_at": "2025-08-01T23:13:59.905205Z", "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-07-31T17:44:15.086739434Z", + "created_at": "2025-08-01T23:13:59.959347Z", "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-07-31T17:44:15.267128106Z", + "created_at": "2025-08-01T23:14:00.037904Z", "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-07-31T17:44:15.453189872Z", + "created_at": "2025-08-01T23:14:00.093527Z", "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-07-31T17:44:15.637366291Z", + "created_at": "2025-08-01T23:14:00.151329Z", "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-07-31T17:44:15.824993856Z", + "created_at": "2025-08-01T23:14:00.209463Z", "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-07-31T17:44:16.009001804Z", + "created_at": "2025-08-01T23:14:00.268012Z", "done": true, "done_reason": "stop", - "total_duration": 33974512186, - "load_duration": 44406815, + "total_duration": 1981034959, + "load_duration": 53445084, "prompt_eval_count": 368, - "prompt_eval_duration": 30611002922, + "prompt_eval_duration": 880000000, "eval_count": 19, - "eval_duration": 3318539690, + "eval_duration": 1046000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/80e4404d8987.json b/tests/integration/recordings/responses/80e4404d8987.json index 5f2d0fc5f..8cfe1836d 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-07-31T17:43:33.008989003Z", + "created_at": "2025-08-01T23:13:56.463658Z", "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-07-31T17:43:33.18634026Z", + "created_at": "2025-08-01T23:13:56.51846Z", "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-07-31T17:43:33.363360212Z", + "created_at": "2025-08-01T23:13:56.569676Z", "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-07-31T17:43:33.540067474Z", + "created_at": "2025-08-01T23:13:56.621666Z", "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-07-31T17:43:33.717434082Z", + "created_at": "2025-08-01T23:13:56.675114Z", "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-07-31T17:43:33.901524865Z", + "created_at": "2025-08-01T23:13:56.727649Z", "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-07-31T17:43:34.086510094Z", + "created_at": "2025-08-01T23:13:56.780249Z", "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-07-31T17:43:34.268793455Z", + "created_at": "2025-08-01T23:13:56.834148Z", "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-07-31T17:43:34.447206727Z", + "created_at": "2025-08-01T23:13:56.885509Z", "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-07-31T17:43:34.629253797Z", + "created_at": "2025-08-01T23:13:56.936635Z", "done": true, "done_reason": "stop", - "total_duration": 14403810481, - "load_duration": 10124930315, + "total_duration": 1572591291, + "load_duration": 77121041, "prompt_eval_count": 31, - "prompt_eval_duration": 2656282776, + "prompt_eval_duration": 1019000000, "eval_count": 10, - "eval_duration": 1621858907, + "eval_duration": 474000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/81a91f79c51d.json b/tests/integration/recordings/responses/81a91f79c51d.json new file mode 100644 index 000000000..2e887dbfc --- /dev/null +++ b/tests/integration/recordings/responses/81a91f79c51d.json @@ -0,0 +1,108 @@ +{ + "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 weather in Tokyo? YOU MUST USE THE get_weather function to get the weather." + } + ], + "response_format": { + "type": "text" + }, + "stream": true, + "tools": [ + { + "function": { + "name": "get_weather", + "description": "Get the weather in a given city", + "parameters": { + "type": "object", + "properties": { + "city": { + "type": "string", + "description": "The city to get the weather for" + } + } + }, + "strict": null + }, + "type": "function" + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-430", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": [ + { + "index": 0, + "id": "call_nzi32w5b", + "function": { + "arguments": "{\"city\":\"Tokyo\"}", + "name": "get_weather" + }, + "type": "function" + } + ] + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754090081, + "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-430", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754090081, + "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/836f51dfb3c5.json b/tests/integration/recordings/responses/836f51dfb3c5.json index cd75fa2f5..833545737 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-07-31T17:44:32.660113677Z", + "created_at": "2025-08-01T23:14:03.770002Z", "done": true, "done_reason": "stop", - "total_duration": 2803904109, - "load_duration": 43469066, + "total_duration": 395965875, + "load_duration": 178888708, "prompt_eval_count": 214, - "prompt_eval_duration": 2716196330, + "prompt_eval_duration": 170000000, "eval_count": 2, - "eval_duration": 43729281, + "eval_duration": 44000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/840fbb380b73.json b/tests/integration/recordings/responses/840fbb380b73.json index 5b8c5ef9d..a3fb7ccd8 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-07-31T17:43:40.884537604Z", + "created_at": "2025-08-01T23:13:57.935921Z", "done": true, "done_reason": "stop", - "total_duration": 3179669897, - "load_duration": 48206132, + "total_duration": 313787333, + "load_duration": 89797542, "prompt_eval_count": 233, - "prompt_eval_duration": 2966799546, + "prompt_eval_duration": 167000000, "eval_count": 5, - "eval_duration": 164144409, + "eval_duration": 55000000, "response": "unsafe\nS1", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/84cab42e1f5c.json b/tests/integration/recordings/responses/84cab42e1f5c.json index 69555f93e..cf89fea92 100644 --- a/tests/integration/recordings/responses/84cab42e1f5c.json +++ b/tests/integration/recordings/responses/84cab42e1f5c.json @@ -1,7 +1,7 @@ { "request": { "method": "POST", - "url": "http://0.0.0.0:11434/v1/v1/completions", + "url": "http://localhost:11434/v1/v1/completions", "headers": {}, "body": { "model": "llama3.2:3b-instruct-fp16", @@ -17,7 +17,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -26,7 +26,7 @@ "text": "Blue" } ], - "created": 1753984323, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -36,7 +36,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -45,7 +45,7 @@ "text": ".\n\n" } ], - "created": 1753984323, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -55,16 +55,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": "This" + "text": "My" } ], - "created": 1753984323, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -74,7 +74,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -83,7 +83,7 @@ "text": " response" } ], - "created": 1753984323, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -93,16 +93,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": " completes" + "text": " is" } ], - "created": 1753984323, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -112,159 +112,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " the" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " traditional" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " English" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " rhyme" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " that" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " often" - } - ], - "created": 1753984324, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " begins" - } - ], - "created": 1753984325, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " with" - } - ], - "created": 1753984325, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -273,7 +121,7 @@ "text": " \"" } ], - "created": 1753984325, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -283,16 +131,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": "R" + "text": "blue" } ], - "created": 1753984325, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -302,16 +150,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": "oses" + "text": "\"" } ], - "created": 1753984325, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -321,16 +169,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": " are" + "text": " because" } ], - "created": 1753984326, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -340,16 +188,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": " red" + "text": " it" } ], - "created": 1753984326, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -359,16 +207,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": "," + "text": " completes" } ], - "created": 1753984326, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -378,16 +226,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": " v" + "text": " the" } ], - "created": 1753984326, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -397,16 +245,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": "io" + "text": " traditional" } ], - "created": 1753984326, + "created": 1754081786, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -416,102 +264,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": "lets" - } - ], - "created": 1753984326, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " are" - } - ], - "created": 1753984327, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": "...\"" - } - ], - "created": 1753984327, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " The" - } - ], - "created": 1753984327, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " full" - } - ], - "created": 1753984327, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -520,7 +273,7 @@ "text": " rhyme" } ], - "created": 1753984327, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -530,16 +283,16 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, "index": 0, "logprobs": null, - "text": " is" + "text": " scheme" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -549,7 +302,197 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " of" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " the" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " classic" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " poetry" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " couple" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "t" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "." + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " The" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " full" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " sentence" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -558,7 +501,7 @@ "text": " typically" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -568,7 +511,45 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " ends" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " with" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -577,7 +558,7 @@ "text": ":\n\n" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -587,7 +568,26 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "\"" + } + ], + "created": 1754081787, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -596,7 +596,7 @@ "text": "R" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -606,7 +606,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -615,7 +615,7 @@ "text": "oses" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -625,7 +625,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -634,7 +634,7 @@ "text": " are" } ], - "created": 1753984328, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -644,7 +644,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -653,7 +653,7 @@ "text": " red" } ], - "created": 1753984329, + "created": 1754081787, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -663,7 +663,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -672,7 +672,7 @@ "text": ",\n" } ], - "created": 1753984329, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -682,7 +682,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -691,7 +691,7 @@ "text": "V" } ], - "created": 1753984329, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -701,7 +701,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -710,7 +710,7 @@ "text": "io" } ], - "created": 1753984329, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -720,7 +720,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -729,7 +729,7 @@ "text": "lets" } ], - "created": 1753984329, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -739,7 +739,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -748,7 +748,7 @@ "text": " are" } ], - "created": 1753984330, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -758,7 +758,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -767,7 +767,7 @@ "text": " blue" } ], - "created": 1753984330, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -777,178 +777,7 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": ",\n" - } - ], - "created": 1753984330, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": "Sugar" - } - ], - "created": 1753984330, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " is" - } - ], - "created": 1753984330, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " sweet" - } - ], - "created": 1753984330, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": ",\n" - } - ], - "created": 1753984331, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": "And" - } - ], - "created": 1753984331, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " so" - } - ], - "created": 1753984331, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " are" - } - ], - "created": 1753984331, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", - "choices": [ - { - "finish_reason": null, - "index": 0, - "logprobs": null, - "text": " you" - } - ], - "created": 1753984331, - "model": "llama3.2:3b-instruct-fp16", - "object": "text_completion", - "system_fingerprint": "fp_ollama", - "usage": null - } - }, - { - "__type__": "openai.types.completion.Completion", - "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", "choices": [ { "finish_reason": null, @@ -957,7 +786,7 @@ "text": ".\"\n\n" } ], - "created": 1753984332, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", @@ -967,7 +796,178 @@ { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-447", + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "This" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " is" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " a" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " well" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": "-known" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " and" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " commonly" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " used" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", + "choices": [ + { + "finish_reason": null, + "index": 0, + "logprobs": null, + "text": " phrase" + } + ], + "created": 1754081788, + "model": "llama3.2:3b-instruct-fp16", + "object": "text_completion", + "system_fingerprint": "fp_ollama", + "usage": null + } + }, + { + "__type__": "openai.types.completion.Completion", + "__data__": { + "id": "cmpl-156", "choices": [ { "finish_reason": "length", @@ -976,7 +976,7 @@ "text": "" } ], - "created": 1753984332, + "created": 1754081788, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", diff --git a/tests/integration/recordings/responses/85594a69d74a.json b/tests/integration/recordings/responses/85594a69d74a.json index 252da82e6..286b8da11 100644 --- a/tests/integration/recordings/responses/85594a69d74a.json +++ b/tests/integration/recordings/responses/85594a69d74a.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:06.788329966Z", + "created_at": "2025-08-01T23:12:54.634929Z", "done": true, "done_reason": "stop", - "total_duration": 1049049073, - "load_duration": 42143902, + "total_duration": 233222375, + "load_duration": 136303125, "prompt_eval_count": 213, - "prompt_eval_duration": 960926699, + "prompt_eval_duration": 78000000, "eval_count": 2, - "eval_duration": 45508201, + "eval_duration": 17000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/97d3812bfccb.json b/tests/integration/recordings/responses/97d3812bfccb.json index 2562216d4..8a9b076fd 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-07-31T17:44:42.081968601Z", + "created_at": "2025-08-01T23:14:06.082832Z", "done": true, "done_reason": "stop", - "total_duration": 2973322204, - "load_duration": 42260755, + "total_duration": 421905083, + "load_duration": 88557750, "prompt_eval_count": 217, - "prompt_eval_duration": 2760398671, + "prompt_eval_duration": 278000000, "eval_count": 5, - "eval_duration": 170139491, + "eval_duration": 54000000, "response": "unsafe\nS1", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/97e259c0d3e5.json b/tests/integration/recordings/responses/97e259c0d3e5.json index da4646193..cd083c9a8 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-07-31T17:44:48.550106343Z", + "created_at": "2025-08-01T23:14:07.138696Z", "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-07-31T17:44:48.733721083Z", + "created_at": "2025-08-01T23:14:07.195013Z", "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-07-31T17:44:48.914478642Z", + "created_at": "2025-08-01T23:14:07.246591Z", "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-07-31T17:44:49.096327727Z", + "created_at": "2025-08-01T23:14:07.29736Z", "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-07-31T17:44:49.276270052Z", + "created_at": "2025-08-01T23:14:07.347941Z", "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-07-31T17:44:49.455584591Z", + "created_at": "2025-08-01T23:14:07.399151Z", "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-07-31T17:44:49.635566453Z", + "created_at": "2025-08-01T23:14:07.452488Z", "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-07-31T17:44:49.814260821Z", + "created_at": "2025-08-01T23:14:07.50538Z", "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-07-31T17:44:49.994127858Z", + "created_at": "2025-08-01T23:14:07.558656Z", "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-07-31T17:44:50.176174312Z", + "created_at": "2025-08-01T23:14:07.610408Z", "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-07-31T17:44:50.363377723Z", + "created_at": "2025-08-01T23:14:07.66358Z", "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-07-31T17:44:50.543615455Z", + "created_at": "2025-08-01T23:14:07.717638Z", "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-07-31T17:44:50.722758469Z", + "created_at": "2025-08-01T23:14:07.769423Z", "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-07-31T17:44:50.904084798Z", + "created_at": "2025-08-01T23:14:07.819395Z", "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-07-31T17:44:51.085643411Z", + "created_at": "2025-08-01T23:14:07.871391Z", "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-07-31T17:44:51.27077086Z", + "created_at": "2025-08-01T23:14:07.924892Z", "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-07-31T17:44:51.4518987Z", + "created_at": "2025-08-01T23:14:07.976557Z", "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-07-31T17:44:51.633427977Z", + "created_at": "2025-08-01T23:14:08.029579Z", "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-07-31T17:44:51.814721336Z", + "created_at": "2025-08-01T23:14:08.082749Z", "done": true, "done_reason": "stop", - "total_duration": 6854120324, - "load_duration": 41359627, + "total_duration": 1425800209, + "load_duration": 138858459, "prompt_eval_count": 384, - "prompt_eval_duration": 3546083190, + "prompt_eval_duration": 340000000, "eval_count": 19, - "eval_duration": 3266092572, + "eval_duration": 945000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/9b812cbcb88d.json b/tests/integration/recordings/responses/9b812cbcb88d.json index b9a8ae5b2..cedfd1c42 100644 --- a/tests/integration/recordings/responses/9b812cbcb88d.json +++ b/tests/integration/recordings/responses/9b812cbcb88d.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:04.489140565Z", + "created_at": "2025-08-01T20:56:51.035807Z", "done": true, "done_reason": "stop", - "total_duration": 29123702298, - "load_duration": 40831143, + "total_duration": 1044135792, + "load_duration": 50873709, "prompt_eval_count": 324, - "prompt_eval_duration": 27253456381, + "prompt_eval_duration": 511000000, "eval_count": 11, - "eval_duration": 1828867055, + "eval_duration": 481000000, "response": "[get_weather(location=\"San Francisco, CA\")]", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/9c140a29ae09.json b/tests/integration/recordings/responses/9c140a29ae09.json index 887a1185c..41b070cc5 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-07-31T17:44:59.929905409Z", + "created_at": "2025-08-01T23:14:09.83858Z", "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-07-31T17:45:00.110734553Z", + "created_at": "2025-08-01T23:14:09.891488Z", "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-07-31T17:45:00.290949416Z", + "created_at": "2025-08-01T23:14:09.945656Z", "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-07-31T17:45:00.475960339Z", + "created_at": "2025-08-01T23:14:09.996898Z", "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-07-31T17:45:00.659481498Z", + "created_at": "2025-08-01T23:14:10.053632Z", "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-07-31T17:45:00.843632147Z", + "created_at": "2025-08-01T23:14:10.105753Z", "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-07-31T17:45:01.033425275Z", + "created_at": "2025-08-01T23:14:10.157953Z", "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-07-31T17:45:01.224890954Z", + "created_at": "2025-08-01T23:14:10.210869Z", "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-07-31T17:45:01.412700377Z", + "created_at": "2025-08-01T23:14:10.263387Z", "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-07-31T17:45:01.602294122Z", + "created_at": "2025-08-01T23:14:10.317794Z", "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-07-31T17:45:01.79213394Z", + "created_at": "2025-08-01T23:14:10.373978Z", "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-07-31T17:45:01.982631333Z", + "created_at": "2025-08-01T23:14:10.429702Z", "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-07-31T17:45:02.172457365Z", + "created_at": "2025-08-01T23:14:10.483762Z", "done": true, "done_reason": "stop", - "total_duration": 4304742260, - "load_duration": 41766451, + "total_duration": 1041142084, + "load_duration": 110407459, "prompt_eval_count": 415, - "prompt_eval_duration": 2018894885, + "prompt_eval_duration": 283000000, "eval_count": 13, - "eval_duration": 2243484258, + "eval_duration": 646000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/9e7a83d3d596.json b/tests/integration/recordings/responses/9e7a83d3d596.json index 8b7b0dca5..0c9b7d6db 100644 --- a/tests/integration/recordings/responses/9e7a83d3d596.json +++ b/tests/integration/recordings/responses/9e7a83d3d596.json @@ -1,7 +1,7 @@ { "request": { "method": "POST", - "url": "http://0.0.0.0:11434/v1/v1/completions", + "url": "http://localhost:11434/v1/v1/completions", "headers": {}, "body": { "model": "llama3.2:3b-instruct-fp16", @@ -15,23 +15,23 @@ "body": { "__type__": "openai.types.completion.Completion", "__data__": { - "id": "cmpl-726", + "id": "cmpl-963", "choices": [ { "finish_reason": "stop", "index": 0, "logprobs": null, - "text": "Blue.\n\nExplanation: This is a play on words from the classic Valentine's Day poem \"Roses are red, violets are blue.\" The original poem typically ends with the line \"sent my love to you,\" but in this adaptation, I've altered it to rhyme by replacing \"blue\" with \"blue\" (a pun). However, it also makes a clever non-literary response." + "text": "Blue.\n\nMy answer is \"blue\" because it's a common rhyme that completes the famous nursery rhyme: \"Roses are red, violets are blue.\" This rhyme has been passed down for generations and is often recited as a greeting or a way to express appreciation. The phrase typically rhymes with the word \"blue\", which is why I chose this response." } ], - "created": 1753984322, + "created": 1754081785, "model": "llama3.2:3b-instruct-fp16", "object": "text_completion", "system_fingerprint": "fp_ollama", "usage": { - "completion_tokens": 81, + "completion_tokens": 76, "prompt_tokens": 50, - "total_tokens": 131, + "total_tokens": 126, "completion_tokens_details": null, "prompt_tokens_details": null } diff --git a/tests/integration/recordings/responses/9fadf5a3d68f.json b/tests/integration/recordings/responses/9fadf5a3d68f.json index 8d6e85d2e..bc3c3ca22 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-07-31T17:46:18.2684163Z", + "created_at": "2025-08-01T23:14:22.168612Z", "done": true, "done_reason": "stop", - "total_duration": 2939701988, - "load_duration": 43760413, + "total_duration": 198446125, + "load_duration": 31859666, "prompt_eval_count": 224, - "prompt_eval_duration": 2854863241, + "prompt_eval_duration": 151000000, "eval_count": 2, - "eval_duration": 40546191, + "eval_duration": 13000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/a0c4df33879f.json b/tests/integration/recordings/responses/a0c4df33879f.json new file mode 100644 index 000000000..f134e0bed --- /dev/null +++ b/tests/integration/recordings/responses/a0c4df33879f.json @@ -0,0 +1,1740 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "What's the name of the Sun in latin?" + } + ], + "stream": true + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": [ + { + "__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk", + "__data__": { + "id": "chatcmpl-458", + "choices": [ + { + "delta": { + "content": "The", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " Latin", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " word", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": ".\"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " This", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081845, + "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-458", + "choices": [ + { + "delta": { + "content": " Roman", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " which", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " was", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " later", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " adopted", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " into", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " many", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " languages", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " In", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " scientific", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " contexts", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": ",", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081846, + "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-458", + "choices": [ + { + "delta": { + "content": " official", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " name", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " for", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " star", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " at", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " center", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " of", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " our", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " solar", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " system", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " is", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " simply", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": "the", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " Sun", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": ",\"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " but", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " \"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": "Sol", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": "\"", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081847, + "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-458", + "choices": [ + { + "delta": { + "content": " remains", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " a", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " commonly", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " used", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " term", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " in", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " astronomy", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " and", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " classical", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": " studies", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": ".", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": null, + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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-458", + "choices": [ + { + "delta": { + "content": "", + "function_call": null, + "refusal": null, + "role": "assistant", + "tool_calls": null + }, + "finish_reason": "stop", + "index": 0, + "logprobs": null + } + ], + "created": 1754081848, + "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/a4c8d19bb1eb.json b/tests/integration/recordings/responses/a4c8d19bb1eb.json new file mode 100644 index 000000000..a3aba2bff --- /dev/null +++ b/tests/integration/recordings/responses/a4c8d19bb1eb.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "Hello, world!" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "chatcmpl-560", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "Hello! It's nice to meet you. How can I assist you today?", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1754081856, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": { + "completion_tokens": 17, + "prompt_tokens": 29, + "total_tokens": 46, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/a59d0d7c1485.json b/tests/integration/recordings/responses/a59d0d7c1485.json index b4b76eee6..80e2462d5 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-07-31T17:46:25.912484084Z", + "created_at": "2025-08-01T23:14:23.46316Z", "done": true, "done_reason": "stop", - "total_duration": 3119768806, - "load_duration": 41781837, + "total_duration": 270313833, + "load_duration": 71668791, "prompt_eval_count": 238, - "prompt_eval_duration": 3036042450, + "prompt_eval_duration": 169000000, "eval_count": 2, - "eval_duration": 41395778, + "eval_duration": 25000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/a6810c23eda8.json b/tests/integration/recordings/responses/a6810c23eda8.json index a2c6fe9f4..46ecdcd56 100644 --- a/tests/integration/recordings/responses/a6810c23eda8.json +++ b/tests/integration/recordings/responses/a6810c23eda8.json @@ -23,7 +23,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:05.617714834Z", + "created_at": "2025-08-01T20:56:43.766028Z", "done": false, "done_reason": null, "total_duration": null, @@ -41,7 +41,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:05.798542309Z", + "created_at": "2025-08-01T20:56:43.810433Z", "done": false, "done_reason": null, "total_duration": null, @@ -59,7 +59,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:05.980841562Z", + "created_at": "2025-08-01T20:56:43.869051Z", "done": false, "done_reason": null, "total_duration": null, @@ -77,7 +77,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:06.162303548Z", + "created_at": "2025-08-01T20:56:43.928272Z", "done": false, "done_reason": null, "total_duration": null, @@ -95,7 +95,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:06.340857636Z", + "created_at": "2025-08-01T20:56:43.987671Z", "done": false, "done_reason": null, "total_duration": null, @@ -113,7 +113,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:06.521595814Z", + "created_at": "2025-08-01T20:56:44.051505Z", "done": false, "done_reason": null, "total_duration": null, @@ -131,7 +131,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:06.701546566Z", + "created_at": "2025-08-01T20:56:44.183306Z", "done": false, "done_reason": null, "total_duration": null, @@ -149,7 +149,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:06.880153315Z", + "created_at": "2025-08-01T20:56:44.240354Z", "done": false, "done_reason": null, "total_duration": null, @@ -167,7 +167,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.060654891Z", + "created_at": "2025-08-01T20:56:44.31441Z", "done": false, "done_reason": null, "total_duration": null, @@ -185,7 +185,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.240380253Z", + "created_at": "2025-08-01T20:56:44.370332Z", "done": false, "done_reason": null, "total_duration": null, @@ -203,7 +203,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.419126616Z", + "created_at": "2025-08-01T20:56:44.431975Z", "done": false, "done_reason": null, "total_duration": null, @@ -221,7 +221,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.598790332Z", + "created_at": "2025-08-01T20:56:44.481015Z", "done": false, "done_reason": null, "total_duration": null, @@ -239,7 +239,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.777056009Z", + "created_at": "2025-08-01T20:56:44.530441Z", "done": false, "done_reason": null, "total_duration": null, @@ -257,7 +257,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:07.952924017Z", + "created_at": "2025-08-01T20:56:44.591576Z", "done": false, "done_reason": null, "total_duration": null, @@ -275,7 +275,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:08.131888967Z", + "created_at": "2025-08-01T20:56:44.656562Z", "done": false, "done_reason": null, "total_duration": null, @@ -293,7 +293,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:08.333057743Z", + "created_at": "2025-08-01T20:56:44.707469Z", "done": false, "done_reason": null, "total_duration": null, @@ -311,7 +311,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:08.5127717Z", + "created_at": "2025-08-01T20:56:44.793146Z", "done": false, "done_reason": null, "total_duration": null, @@ -329,7 +329,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:08.697392665Z", + "created_at": "2025-08-01T20:56:44.84461Z", "done": false, "done_reason": null, "total_duration": null, @@ -347,7 +347,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:08.880798014Z", + "created_at": "2025-08-01T20:56:44.892168Z", "done": false, "done_reason": null, "total_duration": null, @@ -365,7 +365,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.059630952Z", + "created_at": "2025-08-01T20:56:44.9392Z", "done": false, "done_reason": null, "total_duration": null, @@ -383,7 +383,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.239778855Z", + "created_at": "2025-08-01T20:56:44.986145Z", "done": false, "done_reason": null, "total_duration": null, @@ -401,7 +401,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.41796922Z", + "created_at": "2025-08-01T20:56:45.032843Z", "done": false, "done_reason": null, "total_duration": null, @@ -419,7 +419,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.594384168Z", + "created_at": "2025-08-01T20:56:45.079678Z", "done": false, "done_reason": null, "total_duration": null, @@ -437,7 +437,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.775287995Z", + "created_at": "2025-08-01T20:56:45.125344Z", "done": false, "done_reason": null, "total_duration": null, @@ -455,7 +455,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:09.956262386Z", + "created_at": "2025-08-01T20:56:45.171365Z", "done": false, "done_reason": null, "total_duration": null, @@ -473,7 +473,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:10.136372272Z", + "created_at": "2025-08-01T20:56:45.21944Z", "done": false, "done_reason": null, "total_duration": null, @@ -491,7 +491,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:10.31476923Z", + "created_at": "2025-08-01T20:56:45.266493Z", "done": false, "done_reason": null, "total_duration": null, @@ -509,7 +509,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:10.492983094Z", + "created_at": "2025-08-01T20:56:45.31207Z", "done": false, "done_reason": null, "total_duration": null, @@ -527,7 +527,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:10.673852463Z", + "created_at": "2025-08-01T20:56:45.359314Z", "done": false, "done_reason": null, "total_duration": null, @@ -545,7 +545,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:10.858527191Z", + "created_at": "2025-08-01T20:56:45.406254Z", "done": false, "done_reason": null, "total_duration": null, @@ -563,7 +563,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.038328378Z", + "created_at": "2025-08-01T20:56:45.452757Z", "done": false, "done_reason": null, "total_duration": null, @@ -581,7 +581,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.215788879Z", + "created_at": "2025-08-01T20:56:45.499632Z", "done": false, "done_reason": null, "total_duration": null, @@ -599,7 +599,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.399602557Z", + "created_at": "2025-08-01T20:56:45.545593Z", "done": false, "done_reason": null, "total_duration": null, @@ -617,7 +617,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.580123511Z", + "created_at": "2025-08-01T20:56:45.595114Z", "done": false, "done_reason": null, "total_duration": null, @@ -635,7 +635,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.757284813Z", + "created_at": "2025-08-01T20:56:45.641522Z", "done": false, "done_reason": null, "total_duration": null, @@ -653,7 +653,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:11.941379029Z", + "created_at": "2025-08-01T20:56:45.688054Z", "done": false, "done_reason": null, "total_duration": null, @@ -671,7 +671,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:12.127019036Z", + "created_at": "2025-08-01T20:56:45.737359Z", "done": false, "done_reason": null, "total_duration": null, @@ -689,7 +689,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:12.308766694Z", + "created_at": "2025-08-01T20:56:45.786187Z", "done": false, "done_reason": null, "total_duration": null, @@ -707,7 +707,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:12.497171833Z", + "created_at": "2025-08-01T20:56:45.834145Z", "done": false, "done_reason": null, "total_duration": null, @@ -725,7 +725,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:12.675256496Z", + "created_at": "2025-08-01T20:56:45.882153Z", "done": false, "done_reason": null, "total_duration": null, @@ -743,7 +743,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:12.86123582Z", + "created_at": "2025-08-01T20:56:45.928181Z", "done": false, "done_reason": null, "total_duration": null, @@ -761,7 +761,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:13.048911842Z", + "created_at": "2025-08-01T20:56:45.974825Z", "done": false, "done_reason": null, "total_duration": null, @@ -779,15 +779,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:53:13.236138052Z", + "created_at": "2025-08-01T20:56:46.022862Z", "done": true, "done_reason": "stop", - "total_duration": 7845771051, - "load_duration": 47957096, + "total_duration": 2444514250, + "load_duration": 107849833, "prompt_eval_count": 18, - "prompt_eval_duration": 178030745, + "prompt_eval_duration": 65000000, "eval_count": 43, - "eval_duration": 7619284509, + "eval_duration": 2270000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/ae6835cfe70e.json b/tests/integration/recordings/responses/ae6835cfe70e.json index b6b80e2a9..d429cc0b5 100644 --- a/tests/integration/recordings/responses/ae6835cfe70e.json +++ b/tests/integration/recordings/responses/ae6835cfe70e.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:57:28.280495733Z", + "created_at": "2025-08-01T20:57:22.827462Z", "done": true, "done_reason": "stop", - "total_duration": 32855142429, - "load_duration": 40184388, + "total_duration": 731625417, + "load_duration": 58932417, "prompt_eval_count": 386, - "prompt_eval_duration": 32634520132, + "prompt_eval_duration": 609000000, "eval_count": 2, - "eval_duration": 179879941, + "eval_duration": 61000000, "response": "[]", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/b91f1fb4aedb.json b/tests/integration/recordings/responses/b91f1fb4aedb.json index 37111cc2d..dccb05cce 100644 --- a/tests/integration/recordings/responses/b91f1fb4aedb.json +++ b/tests/integration/recordings/responses/b91f1fb4aedb.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:09.896924388Z", + "created_at": "2025-08-01T20:56:52.232108Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,7 +39,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.082480973Z", + "created_at": "2025-08-01T20:56:52.278231Z", "done": false, "done_reason": null, "total_duration": null, @@ -57,7 +57,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.264445159Z", + "created_at": "2025-08-01T20:56:52.324826Z", "done": false, "done_reason": null, "total_duration": null, @@ -75,7 +75,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.445463678Z", + "created_at": "2025-08-01T20:56:52.371742Z", "done": false, "done_reason": null, "total_duration": null, @@ -93,7 +93,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.627295509Z", + "created_at": "2025-08-01T20:56:52.420615Z", "done": false, "done_reason": null, "total_duration": null, @@ -111,7 +111,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.81236738Z", + "created_at": "2025-08-01T20:56:52.467321Z", "done": false, "done_reason": null, "total_duration": null, @@ -129,7 +129,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:10.999420818Z", + "created_at": "2025-08-01T20:56:52.514894Z", "done": false, "done_reason": null, "total_duration": null, @@ -147,7 +147,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:11.188320899Z", + "created_at": "2025-08-01T20:56:52.562247Z", "done": false, "done_reason": null, "total_duration": null, @@ -165,7 +165,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:11.379926424Z", + "created_at": "2025-08-01T20:56:52.608002Z", "done": false, "done_reason": null, "total_duration": null, @@ -183,7 +183,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:11.574460052Z", + "created_at": "2025-08-01T20:56:52.656949Z", "done": false, "done_reason": null, "total_duration": null, @@ -201,15 +201,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:11.771461946Z", + "created_at": "2025-08-01T20:56:52.704421Z", "done": true, "done_reason": "stop", - "total_duration": 4947159618, - "load_duration": 43936066, + "total_duration": 731562041, + "load_duration": 115199875, "prompt_eval_count": 339, - "prompt_eval_duration": 3027152411, + "prompt_eval_duration": 136000000, "eval_count": 11, - "eval_duration": 1875512881, + "eval_duration": 478000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/bbd0637dce16.json b/tests/integration/recordings/responses/bbd0637dce16.json index 1fa733e18..b05f5c934 100644 --- a/tests/integration/recordings/responses/bbd0637dce16.json +++ b/tests/integration/recordings/responses/bbd0637dce16.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:14.346282017Z", + "created_at": "2025-08-01T20:56:53.073246Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,7 +39,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:14.52939924Z", + "created_at": "2025-08-01T20:56:53.123061Z", "done": false, "done_reason": null, "total_duration": null, @@ -57,7 +57,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:14.714949794Z", + "created_at": "2025-08-01T20:56:53.180905Z", "done": false, "done_reason": null, "total_duration": null, @@ -75,7 +75,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:14.894736492Z", + "created_at": "2025-08-01T20:56:53.232132Z", "done": false, "done_reason": null, "total_duration": null, @@ -93,7 +93,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.081363009Z", + "created_at": "2025-08-01T20:56:53.282297Z", "done": false, "done_reason": null, "total_duration": null, @@ -111,7 +111,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.264275377Z", + "created_at": "2025-08-01T20:56:53.332959Z", "done": false, "done_reason": null, "total_duration": null, @@ -129,7 +129,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.444600756Z", + "created_at": "2025-08-01T20:56:53.382245Z", "done": false, "done_reason": null, "total_duration": null, @@ -147,7 +147,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.624829048Z", + "created_at": "2025-08-01T20:56:53.43236Z", "done": false, "done_reason": null, "total_duration": null, @@ -165,7 +165,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.805880499Z", + "created_at": "2025-08-01T20:56:53.488034Z", "done": false, "done_reason": null, "total_duration": null, @@ -183,7 +183,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:15.987285938Z", + "created_at": "2025-08-01T20:56:53.560318Z", "done": false, "done_reason": null, "total_duration": null, @@ -201,7 +201,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:16.17196429Z", + "created_at": "2025-08-01T20:56:53.609316Z", "done": false, "done_reason": null, "total_duration": null, @@ -219,7 +219,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:16.359146297Z", + "created_at": "2025-08-01T20:56:53.679583Z", "done": false, "done_reason": null, "total_duration": null, @@ -237,7 +237,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:16.555039Z", + "created_at": "2025-08-01T20:56:53.754028Z", "done": false, "done_reason": null, "total_duration": null, @@ -255,7 +255,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:16.747367383Z", + "created_at": "2025-08-01T20:56:53.815078Z", "done": false, "done_reason": null, "total_duration": null, @@ -273,7 +273,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:16.935061953Z", + "created_at": "2025-08-01T20:56:53.864498Z", "done": false, "done_reason": null, "total_duration": null, @@ -291,7 +291,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:17.118660094Z", + "created_at": "2025-08-01T20:56:53.920528Z", "done": false, "done_reason": null, "total_duration": null, @@ -309,7 +309,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:17.30199003Z", + "created_at": "2025-08-01T20:56:53.971546Z", "done": false, "done_reason": null, "total_duration": null, @@ -327,7 +327,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:17.482657228Z", + "created_at": "2025-08-01T20:56:54.028526Z", "done": false, "done_reason": null, "total_duration": null, @@ -345,7 +345,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:17.661680024Z", + "created_at": "2025-08-01T20:56:54.090548Z", "done": false, "done_reason": null, "total_duration": null, @@ -363,7 +363,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:17.84105973Z", + "created_at": "2025-08-01T20:56:54.140592Z", "done": false, "done_reason": null, "total_duration": null, @@ -381,7 +381,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.021351615Z", + "created_at": "2025-08-01T20:56:54.190503Z", "done": false, "done_reason": null, "total_duration": null, @@ -399,7 +399,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.203546164Z", + "created_at": "2025-08-01T20:56:54.247254Z", "done": false, "done_reason": null, "total_duration": null, @@ -417,7 +417,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.386621093Z", + "created_at": "2025-08-01T20:56:54.296415Z", "done": false, "done_reason": null, "total_duration": null, @@ -435,7 +435,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.566868241Z", + "created_at": "2025-08-01T20:56:54.357187Z", "done": false, "done_reason": null, "total_duration": null, @@ -453,7 +453,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.747882123Z", + "created_at": "2025-08-01T20:56:54.408666Z", "done": false, "done_reason": null, "total_duration": null, @@ -471,7 +471,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:18.929988724Z", + "created_at": "2025-08-01T20:56:54.464649Z", "done": false, "done_reason": null, "total_duration": null, @@ -489,7 +489,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:19.113741944Z", + "created_at": "2025-08-01T20:56:54.517253Z", "done": false, "done_reason": null, "total_duration": null, @@ -507,7 +507,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:19.309719802Z", + "created_at": "2025-08-01T20:56:54.580587Z", "done": false, "done_reason": null, "total_duration": null, @@ -525,7 +525,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:19.496484724Z", + "created_at": "2025-08-01T20:56:54.634609Z", "done": false, "done_reason": null, "total_duration": null, @@ -543,7 +543,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:19.681877423Z", + "created_at": "2025-08-01T20:56:54.689092Z", "done": false, "done_reason": null, "total_duration": null, @@ -561,7 +561,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:19.86470071Z", + "created_at": "2025-08-01T20:56:54.737491Z", "done": false, "done_reason": null, "total_duration": null, @@ -579,7 +579,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.046320492Z", + "created_at": "2025-08-01T20:56:54.799419Z", "done": false, "done_reason": null, "total_duration": null, @@ -597,7 +597,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.231195326Z", + "created_at": "2025-08-01T20:56:54.852253Z", "done": false, "done_reason": null, "total_duration": null, @@ -615,7 +615,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.416953957Z", + "created_at": "2025-08-01T20:56:54.914508Z", "done": false, "done_reason": null, "total_duration": null, @@ -633,7 +633,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.606717706Z", + "created_at": "2025-08-01T20:56:54.9647Z", "done": false, "done_reason": null, "total_duration": null, @@ -651,7 +651,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.796684899Z", + "created_at": "2025-08-01T20:56:55.014746Z", "done": false, "done_reason": null, "total_duration": null, @@ -669,7 +669,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:20.988605781Z", + "created_at": "2025-08-01T20:56:55.063861Z", "done": false, "done_reason": null, "total_duration": null, @@ -687,7 +687,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:21.176611596Z", + "created_at": "2025-08-01T20:56:55.113356Z", "done": false, "done_reason": null, "total_duration": null, @@ -705,7 +705,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:21.364624459Z", + "created_at": "2025-08-01T20:56:55.163516Z", "done": false, "done_reason": null, "total_duration": null, @@ -723,7 +723,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:21.551710639Z", + "created_at": "2025-08-01T20:56:55.220768Z", "done": false, "done_reason": null, "total_duration": null, @@ -741,7 +741,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:21.74247772Z", + "created_at": "2025-08-01T20:56:55.285346Z", "done": false, "done_reason": null, "total_duration": null, @@ -759,7 +759,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:21.926758183Z", + "created_at": "2025-08-01T20:56:55.335656Z", "done": false, "done_reason": null, "total_duration": null, @@ -777,7 +777,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:22.112755801Z", + "created_at": "2025-08-01T20:56:55.385525Z", "done": false, "done_reason": null, "total_duration": null, @@ -795,7 +795,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:22.300570707Z", + "created_at": "2025-08-01T20:56:55.448385Z", "done": false, "done_reason": null, "total_duration": null, @@ -813,7 +813,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:22.487035456Z", + "created_at": "2025-08-01T20:56:55.502557Z", "done": false, "done_reason": null, "total_duration": null, @@ -831,7 +831,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:22.673888899Z", + "created_at": "2025-08-01T20:56:55.554511Z", "done": false, "done_reason": null, "total_duration": null, @@ -849,7 +849,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:22.85859447Z", + "created_at": "2025-08-01T20:56:55.608495Z", "done": false, "done_reason": null, "total_duration": null, @@ -867,7 +867,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.050738337Z", + "created_at": "2025-08-01T20:56:55.65582Z", "done": false, "done_reason": null, "total_duration": null, @@ -885,7 +885,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.243461441Z", + "created_at": "2025-08-01T20:56:55.70258Z", "done": false, "done_reason": null, "total_duration": null, @@ -903,7 +903,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.428547012Z", + "created_at": "2025-08-01T20:56:55.748656Z", "done": false, "done_reason": null, "total_duration": null, @@ -921,7 +921,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.614149313Z", + "created_at": "2025-08-01T20:56:55.793429Z", "done": false, "done_reason": null, "total_duration": null, @@ -939,7 +939,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.79871292Z", + "created_at": "2025-08-01T20:56:55.840362Z", "done": false, "done_reason": null, "total_duration": null, @@ -957,7 +957,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:23.993971096Z", + "created_at": "2025-08-01T20:56:55.886535Z", "done": false, "done_reason": null, "total_duration": null, @@ -975,7 +975,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:24.182818036Z", + "created_at": "2025-08-01T20:56:55.932966Z", "done": false, "done_reason": null, "total_duration": null, @@ -993,7 +993,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:24.368311299Z", + "created_at": "2025-08-01T20:56:55.979079Z", "done": false, "done_reason": null, "total_duration": null, @@ -1011,7 +1011,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:24.554855056Z", + "created_at": "2025-08-01T20:56:56.025463Z", "done": false, "done_reason": null, "total_duration": null, @@ -1029,7 +1029,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:24.739783206Z", + "created_at": "2025-08-01T20:56:56.071487Z", "done": false, "done_reason": null, "total_duration": null, @@ -1047,7 +1047,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:24.919169901Z", + "created_at": "2025-08-01T20:56:56.118372Z", "done": false, "done_reason": null, "total_duration": null, @@ -1065,7 +1065,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:25.099824662Z", + "created_at": "2025-08-01T20:56:56.163759Z", "done": false, "done_reason": null, "total_duration": null, @@ -1083,7 +1083,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:25.282939961Z", + "created_at": "2025-08-01T20:56:56.208Z", "done": false, "done_reason": null, "total_duration": null, @@ -1101,7 +1101,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:25.466347174Z", + "created_at": "2025-08-01T20:56:56.256042Z", "done": false, "done_reason": null, "total_duration": null, @@ -1119,7 +1119,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:25.651265406Z", + "created_at": "2025-08-01T20:56:56.30261Z", "done": false, "done_reason": null, "total_duration": null, @@ -1137,7 +1137,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:25.834990001Z", + "created_at": "2025-08-01T20:56:56.348739Z", "done": false, "done_reason": null, "total_duration": null, @@ -1155,7 +1155,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.019818141Z", + "created_at": "2025-08-01T20:56:56.393332Z", "done": false, "done_reason": null, "total_duration": null, @@ -1173,7 +1173,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.205188289Z", + "created_at": "2025-08-01T20:56:56.440274Z", "done": false, "done_reason": null, "total_duration": null, @@ -1191,7 +1191,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.388926617Z", + "created_at": "2025-08-01T20:56:56.487668Z", "done": false, "done_reason": null, "total_duration": null, @@ -1209,7 +1209,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.572416679Z", + "created_at": "2025-08-01T20:56:56.534721Z", "done": false, "done_reason": null, "total_duration": null, @@ -1227,7 +1227,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.757831343Z", + "created_at": "2025-08-01T20:56:56.579311Z", "done": false, "done_reason": null, "total_duration": null, @@ -1245,7 +1245,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:26.939127101Z", + "created_at": "2025-08-01T20:56:56.631181Z", "done": false, "done_reason": null, "total_duration": null, @@ -1263,7 +1263,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:27.125717929Z", + "created_at": "2025-08-01T20:56:56.672535Z", "done": false, "done_reason": null, "total_duration": null, @@ -1281,7 +1281,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:27.306735967Z", + "created_at": "2025-08-01T20:56:56.720305Z", "done": false, "done_reason": null, "total_duration": null, @@ -1299,7 +1299,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:27.486472357Z", + "created_at": "2025-08-01T20:56:56.766504Z", "done": false, "done_reason": null, "total_duration": null, @@ -1317,7 +1317,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:27.667914623Z", + "created_at": "2025-08-01T20:56:56.810873Z", "done": false, "done_reason": null, "total_duration": null, @@ -1335,7 +1335,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:27.858779966Z", + "created_at": "2025-08-01T20:56:56.85671Z", "done": false, "done_reason": null, "total_duration": null, @@ -1353,7 +1353,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.039403127Z", + "created_at": "2025-08-01T20:56:56.903626Z", "done": false, "done_reason": null, "total_duration": null, @@ -1371,7 +1371,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.224070121Z", + "created_at": "2025-08-01T20:56:56.951644Z", "done": false, "done_reason": null, "total_duration": null, @@ -1389,7 +1389,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.415498584Z", + "created_at": "2025-08-01T20:56:56.997692Z", "done": false, "done_reason": null, "total_duration": null, @@ -1407,7 +1407,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.597971605Z", + "created_at": "2025-08-01T20:56:57.042867Z", "done": false, "done_reason": null, "total_duration": null, @@ -1425,7 +1425,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.777776103Z", + "created_at": "2025-08-01T20:56:57.090092Z", "done": false, "done_reason": null, "total_duration": null, @@ -1443,7 +1443,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:28.959922934Z", + "created_at": "2025-08-01T20:56:57.13756Z", "done": false, "done_reason": null, "total_duration": null, @@ -1461,7 +1461,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:29.145546229Z", + "created_at": "2025-08-01T20:56:57.185504Z", "done": false, "done_reason": null, "total_duration": null, @@ -1479,7 +1479,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:29.325162626Z", + "created_at": "2025-08-01T20:56:57.233795Z", "done": false, "done_reason": null, "total_duration": null, @@ -1497,7 +1497,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:29.506611664Z", + "created_at": "2025-08-01T20:56:57.279091Z", "done": false, "done_reason": null, "total_duration": null, @@ -1515,7 +1515,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:29.691331228Z", + "created_at": "2025-08-01T20:56:57.324796Z", "done": false, "done_reason": null, "total_duration": null, @@ -1533,7 +1533,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:29.877068274Z", + "created_at": "2025-08-01T20:56:57.371362Z", "done": false, "done_reason": null, "total_duration": null, @@ -1551,7 +1551,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.06009055Z", + "created_at": "2025-08-01T20:56:57.417466Z", "done": false, "done_reason": null, "total_duration": null, @@ -1569,7 +1569,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.242033122Z", + "created_at": "2025-08-01T20:56:57.462505Z", "done": false, "done_reason": null, "total_duration": null, @@ -1587,7 +1587,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.423487413Z", + "created_at": "2025-08-01T20:56:57.508191Z", "done": false, "done_reason": null, "total_duration": null, @@ -1605,7 +1605,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.609599401Z", + "created_at": "2025-08-01T20:56:57.554807Z", "done": false, "done_reason": null, "total_duration": null, @@ -1623,7 +1623,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.793301575Z", + "created_at": "2025-08-01T20:56:57.601115Z", "done": false, "done_reason": null, "total_duration": null, @@ -1641,7 +1641,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:30.972545984Z", + "created_at": "2025-08-01T20:56:57.651194Z", "done": false, "done_reason": null, "total_duration": null, @@ -1659,7 +1659,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:31.155886698Z", + "created_at": "2025-08-01T20:56:57.703043Z", "done": false, "done_reason": null, "total_duration": null, @@ -1677,7 +1677,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:31.34101472Z", + "created_at": "2025-08-01T20:56:57.752817Z", "done": false, "done_reason": null, "total_duration": null, @@ -1695,7 +1695,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:31.526108593Z", + "created_at": "2025-08-01T20:56:57.805119Z", "done": false, "done_reason": null, "total_duration": null, @@ -1713,7 +1713,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:31.713602609Z", + "created_at": "2025-08-01T20:56:57.855864Z", "done": false, "done_reason": null, "total_duration": null, @@ -1731,7 +1731,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:31.894945451Z", + "created_at": "2025-08-01T20:56:57.918946Z", "done": false, "done_reason": null, "total_duration": null, @@ -1749,7 +1749,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:32.081440199Z", + "created_at": "2025-08-01T20:56:57.971018Z", "done": false, "done_reason": null, "total_duration": null, @@ -1767,7 +1767,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:32.267787985Z", + "created_at": "2025-08-01T20:56:58.02062Z", "done": false, "done_reason": null, "total_duration": null, @@ -1785,7 +1785,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:32.448188568Z", + "created_at": "2025-08-01T20:56:58.068911Z", "done": false, "done_reason": null, "total_duration": null, @@ -1803,7 +1803,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:32.642930659Z", + "created_at": "2025-08-01T20:56:58.118087Z", "done": false, "done_reason": null, "total_duration": null, @@ -1821,7 +1821,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:32.825982387Z", + "created_at": "2025-08-01T20:56:58.166806Z", "done": false, "done_reason": null, "total_duration": null, @@ -1839,7 +1839,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.010425637Z", + "created_at": "2025-08-01T20:56:58.212336Z", "done": false, "done_reason": null, "total_duration": null, @@ -1857,7 +1857,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.194160049Z", + "created_at": "2025-08-01T20:56:58.259037Z", "done": false, "done_reason": null, "total_duration": null, @@ -1875,7 +1875,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.379248083Z", + "created_at": "2025-08-01T20:56:58.305923Z", "done": false, "done_reason": null, "total_duration": null, @@ -1893,7 +1893,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.563743684Z", + "created_at": "2025-08-01T20:56:58.35316Z", "done": false, "done_reason": null, "total_duration": null, @@ -1911,7 +1911,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.748061333Z", + "created_at": "2025-08-01T20:56:58.400577Z", "done": false, "done_reason": null, "total_duration": null, @@ -1929,7 +1929,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:33.928760223Z", + "created_at": "2025-08-01T20:56:58.445727Z", "done": false, "done_reason": null, "total_duration": null, @@ -1947,7 +1947,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:34.109239225Z", + "created_at": "2025-08-01T20:56:58.493492Z", "done": false, "done_reason": null, "total_duration": null, @@ -1965,7 +1965,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:34.293493176Z", + "created_at": "2025-08-01T20:56:58.540334Z", "done": false, "done_reason": null, "total_duration": null, @@ -1983,7 +1983,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:34.473228178Z", + "created_at": "2025-08-01T20:56:58.587262Z", "done": false, "done_reason": null, "total_duration": null, @@ -2001,7 +2001,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:34.655305546Z", + "created_at": "2025-08-01T20:56:58.636491Z", "done": false, "done_reason": null, "total_duration": null, @@ -2019,7 +2019,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:34.835624787Z", + "created_at": "2025-08-01T20:56:58.686605Z", "done": false, "done_reason": null, "total_duration": null, @@ -2037,7 +2037,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.012982088Z", + "created_at": "2025-08-01T20:56:58.734904Z", "done": false, "done_reason": null, "total_duration": null, @@ -2055,7 +2055,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.193157278Z", + "created_at": "2025-08-01T20:56:58.78326Z", "done": false, "done_reason": null, "total_duration": null, @@ -2073,7 +2073,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.369403767Z", + "created_at": "2025-08-01T20:56:58.82962Z", "done": false, "done_reason": null, "total_duration": null, @@ -2091,7 +2091,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.547587382Z", + "created_at": "2025-08-01T20:56:58.877323Z", "done": false, "done_reason": null, "total_duration": null, @@ -2109,7 +2109,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.726121535Z", + "created_at": "2025-08-01T20:56:58.925591Z", "done": false, "done_reason": null, "total_duration": null, @@ -2127,7 +2127,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:35.905829777Z", + "created_at": "2025-08-01T20:56:58.973271Z", "done": false, "done_reason": null, "total_duration": null, @@ -2145,7 +2145,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.09129003Z", + "created_at": "2025-08-01T20:56:59.020603Z", "done": false, "done_reason": null, "total_duration": null, @@ -2163,7 +2163,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.273703965Z", + "created_at": "2025-08-01T20:56:59.068361Z", "done": false, "done_reason": null, "total_duration": null, @@ -2181,7 +2181,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.450332934Z", + "created_at": "2025-08-01T20:56:59.116357Z", "done": false, "done_reason": null, "total_duration": null, @@ -2199,7 +2199,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.629217924Z", + "created_at": "2025-08-01T20:56:59.165208Z", "done": false, "done_reason": null, "total_duration": null, @@ -2217,7 +2217,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.806365658Z", + "created_at": "2025-08-01T20:56:59.214665Z", "done": false, "done_reason": null, "total_duration": null, @@ -2235,7 +2235,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:36.984327623Z", + "created_at": "2025-08-01T20:56:59.260891Z", "done": false, "done_reason": null, "total_duration": null, @@ -2253,7 +2253,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:37.166911308Z", + "created_at": "2025-08-01T20:56:59.312078Z", "done": false, "done_reason": null, "total_duration": null, @@ -2271,7 +2271,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:37.346878818Z", + "created_at": "2025-08-01T20:56:59.363408Z", "done": false, "done_reason": null, "total_duration": null, @@ -2289,7 +2289,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:37.527252601Z", + "created_at": "2025-08-01T20:56:59.412871Z", "done": false, "done_reason": null, "total_duration": null, @@ -2307,7 +2307,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:37.705701214Z", + "created_at": "2025-08-01T20:56:59.45986Z", "done": false, "done_reason": null, "total_duration": null, @@ -2325,7 +2325,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:37.885325419Z", + "created_at": "2025-08-01T20:56:59.507267Z", "done": false, "done_reason": null, "total_duration": null, @@ -2343,7 +2343,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.067474944Z", + "created_at": "2025-08-01T20:56:59.55667Z", "done": false, "done_reason": null, "total_duration": null, @@ -2361,7 +2361,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.251569266Z", + "created_at": "2025-08-01T20:56:59.604314Z", "done": false, "done_reason": null, "total_duration": null, @@ -2379,7 +2379,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.435335346Z", + "created_at": "2025-08-01T20:56:59.651999Z", "done": false, "done_reason": null, "total_duration": null, @@ -2397,7 +2397,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.616959483Z", + "created_at": "2025-08-01T20:56:59.700667Z", "done": false, "done_reason": null, "total_duration": null, @@ -2415,7 +2415,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.793826986Z", + "created_at": "2025-08-01T20:56:59.747038Z", "done": false, "done_reason": null, "total_duration": null, @@ -2433,7 +2433,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:38.971019847Z", + "created_at": "2025-08-01T20:56:59.794568Z", "done": false, "done_reason": null, "total_duration": null, @@ -2451,7 +2451,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:39.148209672Z", + "created_at": "2025-08-01T20:56:59.845606Z", "done": false, "done_reason": null, "total_duration": null, @@ -2469,7 +2469,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:39.32452659Z", + "created_at": "2025-08-01T20:56:59.895248Z", "done": false, "done_reason": null, "total_duration": null, @@ -2487,7 +2487,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:39.505731737Z", + "created_at": "2025-08-01T20:56:59.941987Z", "done": false, "done_reason": null, "total_duration": null, @@ -2505,7 +2505,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:39.68324544Z", + "created_at": "2025-08-01T20:56:59.989983Z", "done": false, "done_reason": null, "total_duration": null, @@ -2523,7 +2523,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:39.861527605Z", + "created_at": "2025-08-01T20:57:00.038147Z", "done": false, "done_reason": null, "total_duration": null, @@ -2541,7 +2541,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.03950865Z", + "created_at": "2025-08-01T20:57:00.086828Z", "done": false, "done_reason": null, "total_duration": null, @@ -2559,7 +2559,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.220135819Z", + "created_at": "2025-08-01T20:57:00.137594Z", "done": false, "done_reason": null, "total_duration": null, @@ -2577,7 +2577,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.397433129Z", + "created_at": "2025-08-01T20:57:00.19098Z", "done": false, "done_reason": null, "total_duration": null, @@ -2595,7 +2595,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.576831646Z", + "created_at": "2025-08-01T20:57:00.241959Z", "done": false, "done_reason": null, "total_duration": null, @@ -2613,7 +2613,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.755712976Z", + "created_at": "2025-08-01T20:57:00.292166Z", "done": false, "done_reason": null, "total_duration": null, @@ -2631,7 +2631,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:40.934839621Z", + "created_at": "2025-08-01T20:57:00.339299Z", "done": false, "done_reason": null, "total_duration": null, @@ -2649,7 +2649,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:41.114951105Z", + "created_at": "2025-08-01T20:57:00.387333Z", "done": false, "done_reason": null, "total_duration": null, @@ -2667,7 +2667,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:41.292251634Z", + "created_at": "2025-08-01T20:57:00.43431Z", "done": false, "done_reason": null, "total_duration": null, @@ -2685,7 +2685,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:41.472339804Z", + "created_at": "2025-08-01T20:57:00.480342Z", "done": false, "done_reason": null, "total_duration": null, @@ -2703,7 +2703,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:41.652743941Z", + "created_at": "2025-08-01T20:57:00.52752Z", "done": false, "done_reason": null, "total_duration": null, @@ -2721,7 +2721,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:41.831983649Z", + "created_at": "2025-08-01T20:57:00.57551Z", "done": false, "done_reason": null, "total_duration": null, @@ -2739,7 +2739,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.011794018Z", + "created_at": "2025-08-01T20:57:00.622747Z", "done": false, "done_reason": null, "total_duration": null, @@ -2757,7 +2757,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.192167124Z", + "created_at": "2025-08-01T20:57:00.672919Z", "done": false, "done_reason": null, "total_duration": null, @@ -2775,7 +2775,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.372655402Z", + "created_at": "2025-08-01T20:57:00.722642Z", "done": false, "done_reason": null, "total_duration": null, @@ -2793,7 +2793,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.552895703Z", + "created_at": "2025-08-01T20:57:00.771249Z", "done": false, "done_reason": null, "total_duration": null, @@ -2811,7 +2811,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.736452553Z", + "created_at": "2025-08-01T20:57:00.819848Z", "done": false, "done_reason": null, "total_duration": null, @@ -2829,7 +2829,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:42.920965653Z", + "created_at": "2025-08-01T20:57:00.86932Z", "done": false, "done_reason": null, "total_duration": null, @@ -2847,7 +2847,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:43.107973824Z", + "created_at": "2025-08-01T20:57:00.917756Z", "done": false, "done_reason": null, "total_duration": null, @@ -2865,7 +2865,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:43.295841598Z", + "created_at": "2025-08-01T20:57:00.969615Z", "done": false, "done_reason": null, "total_duration": null, @@ -2883,7 +2883,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:43.487677068Z", + "created_at": "2025-08-01T20:57:01.021786Z", "done": false, "done_reason": null, "total_duration": null, @@ -2901,7 +2901,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:43.670981299Z", + "created_at": "2025-08-01T20:57:01.073794Z", "done": false, "done_reason": null, "total_duration": null, @@ -2919,7 +2919,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:43.859031006Z", + "created_at": "2025-08-01T20:57:01.133868Z", "done": false, "done_reason": null, "total_duration": null, @@ -2937,7 +2937,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:44.058854438Z", + "created_at": "2025-08-01T20:57:01.183531Z", "done": false, "done_reason": null, "total_duration": null, @@ -2955,7 +2955,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:44.247165646Z", + "created_at": "2025-08-01T20:57:01.234668Z", "done": false, "done_reason": null, "total_duration": null, @@ -2973,7 +2973,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:44.443919945Z", + "created_at": "2025-08-01T20:57:01.284889Z", "done": false, "done_reason": null, "total_duration": null, @@ -2991,7 +2991,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:44.640345509Z", + "created_at": "2025-08-01T20:57:01.333911Z", "done": false, "done_reason": null, "total_duration": null, @@ -3009,7 +3009,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:44.826366647Z", + "created_at": "2025-08-01T20:57:01.38265Z", "done": false, "done_reason": null, "total_duration": null, @@ -3027,7 +3027,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.018273616Z", + "created_at": "2025-08-01T20:57:01.434784Z", "done": false, "done_reason": null, "total_duration": null, @@ -3045,7 +3045,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.214270158Z", + "created_at": "2025-08-01T20:57:01.48788Z", "done": false, "done_reason": null, "total_duration": null, @@ -3063,7 +3063,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.407600479Z", + "created_at": "2025-08-01T20:57:01.538129Z", "done": false, "done_reason": null, "total_duration": null, @@ -3081,7 +3081,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.587463306Z", + "created_at": "2025-08-01T20:57:01.587274Z", "done": false, "done_reason": null, "total_duration": null, @@ -3099,7 +3099,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.763700034Z", + "created_at": "2025-08-01T20:57:01.635903Z", "done": false, "done_reason": null, "total_duration": null, @@ -3117,7 +3117,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:45.942709439Z", + "created_at": "2025-08-01T20:57:01.685825Z", "done": false, "done_reason": null, "total_duration": null, @@ -3135,7 +3135,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:46.120338544Z", + "created_at": "2025-08-01T20:57:01.735734Z", "done": false, "done_reason": null, "total_duration": null, @@ -3153,7 +3153,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:46.300553317Z", + "created_at": "2025-08-01T20:57:01.78513Z", "done": false, "done_reason": null, "total_duration": null, @@ -3171,7 +3171,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:46.479050541Z", + "created_at": "2025-08-01T20:57:01.835305Z", "done": false, "done_reason": null, "total_duration": null, @@ -3189,7 +3189,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:46.658713024Z", + "created_at": "2025-08-01T20:57:01.882976Z", "done": false, "done_reason": null, "total_duration": null, @@ -3207,7 +3207,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:46.839290118Z", + "created_at": "2025-08-01T20:57:01.931504Z", "done": false, "done_reason": null, "total_duration": null, @@ -3225,7 +3225,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.016963671Z", + "created_at": "2025-08-01T20:57:01.981052Z", "done": false, "done_reason": null, "total_duration": null, @@ -3243,7 +3243,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.194067179Z", + "created_at": "2025-08-01T20:57:02.034601Z", "done": false, "done_reason": null, "total_duration": null, @@ -3261,7 +3261,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.373898514Z", + "created_at": "2025-08-01T20:57:02.089694Z", "done": false, "done_reason": null, "total_duration": null, @@ -3279,7 +3279,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.552058297Z", + "created_at": "2025-08-01T20:57:02.147879Z", "done": false, "done_reason": null, "total_duration": null, @@ -3297,7 +3297,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.728696074Z", + "created_at": "2025-08-01T20:57:02.197159Z", "done": false, "done_reason": null, "total_duration": null, @@ -3315,7 +3315,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:47.903507242Z", + "created_at": "2025-08-01T20:57:02.245344Z", "done": false, "done_reason": null, "total_duration": null, @@ -3333,7 +3333,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.082542103Z", + "created_at": "2025-08-01T20:57:02.297014Z", "done": false, "done_reason": null, "total_duration": null, @@ -3351,7 +3351,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.257942426Z", + "created_at": "2025-08-01T20:57:02.346106Z", "done": false, "done_reason": null, "total_duration": null, @@ -3369,7 +3369,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.432408495Z", + "created_at": "2025-08-01T20:57:02.393734Z", "done": false, "done_reason": null, "total_duration": null, @@ -3387,7 +3387,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.611052957Z", + "created_at": "2025-08-01T20:57:02.442589Z", "done": false, "done_reason": null, "total_duration": null, @@ -3405,7 +3405,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.787480718Z", + "created_at": "2025-08-01T20:57:02.491403Z", "done": false, "done_reason": null, "total_duration": null, @@ -3423,7 +3423,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:48.968500481Z", + "created_at": "2025-08-01T20:57:02.541047Z", "done": false, "done_reason": null, "total_duration": null, @@ -3441,7 +3441,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:49.149465089Z", + "created_at": "2025-08-01T20:57:02.591264Z", "done": false, "done_reason": null, "total_duration": null, @@ -3459,7 +3459,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:49.330734142Z", + "created_at": "2025-08-01T20:57:02.639813Z", "done": false, "done_reason": null, "total_duration": null, @@ -3477,7 +3477,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:49.508892429Z", + "created_at": "2025-08-01T20:57:02.69062Z", "done": false, "done_reason": null, "total_duration": null, @@ -3495,7 +3495,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:49.684465885Z", + "created_at": "2025-08-01T20:57:02.7394Z", "done": false, "done_reason": null, "total_duration": null, @@ -3513,7 +3513,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:49.862974656Z", + "created_at": "2025-08-01T20:57:02.78855Z", "done": false, "done_reason": null, "total_duration": null, @@ -3531,7 +3531,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.038079229Z", + "created_at": "2025-08-01T20:57:02.837222Z", "done": false, "done_reason": null, "total_duration": null, @@ -3549,7 +3549,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.215836607Z", + "created_at": "2025-08-01T20:57:02.886652Z", "done": false, "done_reason": null, "total_duration": null, @@ -3567,7 +3567,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.394935584Z", + "created_at": "2025-08-01T20:57:02.935063Z", "done": false, "done_reason": null, "total_duration": null, @@ -3585,7 +3585,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.570525491Z", + "created_at": "2025-08-01T20:57:02.984436Z", "done": false, "done_reason": null, "total_duration": null, @@ -3603,7 +3603,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.74798129Z", + "created_at": "2025-08-01T20:57:03.034983Z", "done": false, "done_reason": null, "total_duration": null, @@ -3621,7 +3621,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:50.927182397Z", + "created_at": "2025-08-01T20:57:03.08462Z", "done": false, "done_reason": null, "total_duration": null, @@ -3639,7 +3639,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.104970726Z", + "created_at": "2025-08-01T20:57:03.136737Z", "done": false, "done_reason": null, "total_duration": null, @@ -3657,7 +3657,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.28314893Z", + "created_at": "2025-08-01T20:57:03.187148Z", "done": false, "done_reason": null, "total_duration": null, @@ -3675,7 +3675,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.45834561Z", + "created_at": "2025-08-01T20:57:03.238025Z", "done": false, "done_reason": null, "total_duration": null, @@ -3693,7 +3693,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.635708096Z", + "created_at": "2025-08-01T20:57:03.287384Z", "done": false, "done_reason": null, "total_duration": null, @@ -3711,7 +3711,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.814425693Z", + "created_at": "2025-08-01T20:57:03.335964Z", "done": false, "done_reason": null, "total_duration": null, @@ -3729,7 +3729,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:51.992397527Z", + "created_at": "2025-08-01T20:57:03.385297Z", "done": false, "done_reason": null, "total_duration": null, @@ -3747,7 +3747,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:52.171570528Z", + "created_at": "2025-08-01T20:57:03.435051Z", "done": false, "done_reason": null, "total_duration": null, @@ -3765,7 +3765,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:52.349997427Z", + "created_at": "2025-08-01T20:57:03.48456Z", "done": false, "done_reason": null, "total_duration": null, @@ -3783,7 +3783,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:52.525371439Z", + "created_at": "2025-08-01T20:57:03.533001Z", "done": false, "done_reason": null, "total_duration": null, @@ -3801,7 +3801,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:52.705645938Z", + "created_at": "2025-08-01T20:57:03.586034Z", "done": false, "done_reason": null, "total_duration": null, @@ -3819,7 +3819,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:52.883992223Z", + "created_at": "2025-08-01T20:57:03.637732Z", "done": false, "done_reason": null, "total_duration": null, @@ -3837,7 +3837,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.064097937Z", + "created_at": "2025-08-01T20:57:03.687711Z", "done": false, "done_reason": null, "total_duration": null, @@ -3855,7 +3855,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.240460062Z", + "created_at": "2025-08-01T20:57:03.736053Z", "done": false, "done_reason": null, "total_duration": null, @@ -3873,7 +3873,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.419193116Z", + "created_at": "2025-08-01T20:57:03.785848Z", "done": false, "done_reason": null, "total_duration": null, @@ -3891,7 +3891,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.599456757Z", + "created_at": "2025-08-01T20:57:03.83515Z", "done": false, "done_reason": null, "total_duration": null, @@ -3909,7 +3909,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.78307921Z", + "created_at": "2025-08-01T20:57:03.885366Z", "done": false, "done_reason": null, "total_duration": null, @@ -3927,7 +3927,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:53.965372901Z", + "created_at": "2025-08-01T20:57:03.935525Z", "done": false, "done_reason": null, "total_duration": null, @@ -3945,7 +3945,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:54.146391033Z", + "created_at": "2025-08-01T20:57:03.988044Z", "done": false, "done_reason": null, "total_duration": null, @@ -3963,7 +3963,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:54.326644865Z", + "created_at": "2025-08-01T20:57:04.039953Z", "done": false, "done_reason": null, "total_duration": null, @@ -3981,7 +3981,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:54.506866496Z", + "created_at": "2025-08-01T20:57:04.088637Z", "done": false, "done_reason": null, "total_duration": null, @@ -3999,7 +3999,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:54.683701545Z", + "created_at": "2025-08-01T20:57:04.136695Z", "done": false, "done_reason": null, "total_duration": null, @@ -4017,7 +4017,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:54.864896708Z", + "created_at": "2025-08-01T20:57:04.186737Z", "done": false, "done_reason": null, "total_duration": null, @@ -4035,7 +4035,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.04477992Z", + "created_at": "2025-08-01T20:57:04.235917Z", "done": false, "done_reason": null, "total_duration": null, @@ -4053,7 +4053,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.220726112Z", + "created_at": "2025-08-01T20:57:04.282422Z", "done": false, "done_reason": null, "total_duration": null, @@ -4071,7 +4071,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.39955031Z", + "created_at": "2025-08-01T20:57:04.329468Z", "done": false, "done_reason": null, "total_duration": null, @@ -4089,7 +4089,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.574953894Z", + "created_at": "2025-08-01T20:57:04.378301Z", "done": false, "done_reason": null, "total_duration": null, @@ -4107,7 +4107,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.751159487Z", + "created_at": "2025-08-01T20:57:04.427438Z", "done": false, "done_reason": null, "total_duration": null, @@ -4125,15 +4125,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:54:55.930109804Z", + "created_at": "2025-08-01T20:57:04.475807Z", "done": true, "done_reason": "stop", - "total_duration": 44012354454, - "load_duration": 42929539, + "total_duration": 11588890291, + "load_duration": 85257500, "prompt_eval_count": 34, - "prompt_eval_duration": 2383587559, + "prompt_eval_duration": 95000000, "eval_count": 229, - "eval_duration": 41585294334, + "eval_duration": 11407000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/c9cba6f3ee38.json b/tests/integration/recordings/responses/c9cba6f3ee38.json index 4240fe90b..488ac6563 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-07-31T17:46:15.281412692Z", + "created_at": "2025-08-01T23:14:21.909783Z", "done": true, "done_reason": "stop", - "total_duration": 2848280419, - "load_duration": 40304146, + "total_duration": 311036333, + "load_duration": 37569542, "prompt_eval_count": 219, - "prompt_eval_duration": 2765376163, + "prompt_eval_duration": 259000000, "eval_count": 2, - "eval_duration": 42099357, + "eval_duration": 12000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/d0ac68cbde69.json b/tests/integration/recordings/responses/d0ac68cbde69.json index 63b352b44..aa38c8f18 100644 --- a/tests/integration/recordings/responses/d0ac68cbde69.json +++ b/tests/integration/recordings/responses/d0ac68cbde69.json @@ -12,31 +12,13 @@ "__type__": "ollama._types.ProcessResponse", "__data__": { "models": [ - { - "model": "all-minilm:l6-v2", - "name": "all-minilm:l6-v2", - "digest": "1b226e2802dbb772b5fc32a58f103ca1804ef7501331012de126ab22f67475ef", - "expires_at": "2025-07-31T18:05:06.618179Z", - "size": 53334016, - "size_vram": 0, - "details": { - "parent_model": "", - "format": "gguf", - "family": "bert", - "families": [ - "bert" - ], - "parameter_size": "23M", - "quantization_level": "F16" - } - }, { "model": "llama3.2:3b-instruct-fp16", "name": "llama3.2:3b-instruct-fp16", "digest": "195a8c01d91ec3cb1e0aad4624a51f2602c51fa7d96110f8ab5a20c84081804d", - "expires_at": "2025-07-31T18:04:42.166739Z", - "size": 7382700032, - "size_vram": 0, + "expires_at": "2025-08-01T16:18:11.656155-07:00", + "size": 8581748736, + "size_vram": 8581748736, "details": { "parent_model": "", "format": "gguf", @@ -52,9 +34,9 @@ "model": "llama-guard3:1b", "name": "llama-guard3:1b", "digest": "494147e06bf99e10dbe67b63a07ac81c162f18ef3341aa3390007ac828571b3b", - "expires_at": "2025-07-31T18:04:06.788447Z", - "size": 1814095872, - "size_vram": 0, + "expires_at": "2025-08-01T16:17:54.635270-07:00", + "size": 2770397184, + "size_vram": 2770397184, "details": { "parent_model": "", "format": "gguf", diff --git a/tests/integration/recordings/responses/d4c86ac355fb.json b/tests/integration/recordings/responses/d4c86ac355fb.json index 418ccb9c7..399c99e96 100644 --- a/tests/integration/recordings/responses/d4c86ac355fb.json +++ b/tests/integration/recordings/responses/d4c86ac355fb.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:05.729198288Z", + "created_at": "2025-08-01T23:12:54.357928Z", "done": true, "done_reason": "stop", - "total_duration": 1097329407, - "load_duration": 48350112, + "total_duration": 227148458, + "load_duration": 113314916, "prompt_eval_count": 220, - "prompt_eval_duration": 1004630210, + "prompt_eval_duration": 83000000, "eval_count": 2, - "eval_duration": 43843552, + "eval_duration": 27000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/dd226d71f844.json b/tests/integration/recordings/responses/dd226d71f844.json index 1083750d2..2b8b52a63 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-07-31T17:46:34.048227816Z", + "created_at": "2025-08-01T23:14:25.381208Z", "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-07-31T17:46:34.229102748Z", + "created_at": "2025-08-01T23:14:25.441511Z", "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-07-31T17:46:34.413533748Z", + "created_at": "2025-08-01T23:14:25.499052Z", "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-07-31T17:46:34.59977971Z", + "created_at": "2025-08-01T23:14:25.577259Z", "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-07-31T17:46:34.781710387Z", + "created_at": "2025-08-01T23:14:25.635016Z", "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-07-31T17:46:34.962137136Z", + "created_at": "2025-08-01T23:14:25.68944Z", "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-07-31T17:46:35.142960328Z", + "created_at": "2025-08-01T23:14:25.742314Z", "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-07-31T17:46:35.322879215Z", + "created_at": "2025-08-01T23:14:25.795086Z", "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-07-31T17:46:35.504172249Z", + "created_at": "2025-08-01T23:14:25.847905Z", "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-07-31T17:46:35.685767411Z", + "created_at": "2025-08-01T23:14:25.898666Z", "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-07-31T17:46:35.865854085Z", + "created_at": "2025-08-01T23:14:25.952292Z", "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-07-31T17:46:36.046336351Z", + "created_at": "2025-08-01T23:14:26.001903Z", "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-07-31T17:46:36.228600193Z", + "created_at": "2025-08-01T23:14:26.053764Z", "done": true, "done_reason": "stop", - "total_duration": 4246630545, - "load_duration": 46591467, + "total_duration": 880684833, + "load_duration": 101945250, "prompt_eval_count": 402, - "prompt_eval_duration": 2017607358, + "prompt_eval_duration": 100000000, "eval_count": 13, - "eval_duration": 2181831592, + "eval_duration": 677000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/dd9e7d5913e9.json b/tests/integration/recordings/responses/dd9e7d5913e9.json index 03c673405..6c472b0ce 100644 --- a/tests/integration/recordings/responses/dd9e7d5913e9.json +++ b/tests/integration/recordings/responses/dd9e7d5913e9.json @@ -21,7 +21,7 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:02.787875238Z", + "created_at": "2025-08-01T20:57:11.920796Z", "done": false, "done_reason": null, "total_duration": null, @@ -39,15 +39,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama3.2:3b-instruct-fp16", - "created_at": "2025-07-31T17:56:02.972585441Z", + "created_at": "2025-08-01T20:57:11.963674Z", "done": true, "done_reason": "stop", - "total_duration": 32348917084, - "load_duration": 39040993, + "total_duration": 837987583, + "load_duration": 158475167, "prompt_eval_count": 386, - "prompt_eval_duration": 32123680358, + "prompt_eval_duration": 617000000, "eval_count": 2, - "eval_duration": 185666617, + "eval_duration": 60000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/e96152610712.json b/tests/integration/recordings/responses/e96152610712.json index 176499280..b55e02825 100644 --- a/tests/integration/recordings/responses/e96152610712.json +++ b/tests/integration/recordings/responses/e96152610712.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:58:56.109631764Z", + "created_at": "2025-08-01T23:12:51.421145Z", "done": true, "done_reason": "stop", - "total_duration": 1062584022, - "load_duration": 43445939, + "total_duration": 201670125, + "load_duration": 70275459, "prompt_eval_count": 207, - "prompt_eval_duration": 845723813, + "prompt_eval_duration": 71000000, "eval_count": 5, - "eval_duration": 172894900, + "eval_duration": 58000000, "response": "unsafe\nS2", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/e9c8a0e4f0e0.json b/tests/integration/recordings/responses/e9c8a0e4f0e0.json new file mode 100644 index 000000000..85adb5734 --- /dev/null +++ b/tests/integration/recordings/responses/e9c8a0e4f0e0.json @@ -0,0 +1,56 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "Which planet do humans live on?" + } + ], + "stream": false + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "chatcmpl-57", + "choices": [ + { + "finish_reason": "stop", + "index": 0, + "logprobs": null, + "message": { + "content": "Humans live on Earth. It is the third planet from the Sun and is the only known planet in the universe that currently supports human life.", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": null + } + } + ], + "created": 1754081845, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": { + "completion_tokens": 29, + "prompt_tokens": 32, + "total_tokens": 61, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/eee47930e3ae.json b/tests/integration/recordings/responses/eee47930e3ae.json index ca7f88c74..20ec83476 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-07-31T17:46:28.464372035Z", + "created_at": "2025-08-01T23:14:23.842191Z", "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-07-31T17:46:28.646456238Z", + "created_at": "2025-08-01T23:14:23.903756Z", "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-07-31T17:46:28.825659141Z", + "created_at": "2025-08-01T23:14:23.962295Z", "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-07-31T17:46:29.007157531Z", + "created_at": "2025-08-01T23:14:24.019479Z", "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-07-31T17:46:29.188522934Z", + "created_at": "2025-08-01T23:14:24.076158Z", "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-07-31T17:46:29.370620046Z", + "created_at": "2025-08-01T23:14:24.142903Z", "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-07-31T17:46:29.556327466Z", + "created_at": "2025-08-01T23:14:24.202616Z", "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-07-31T17:46:29.738894573Z", + "created_at": "2025-08-01T23:14:24.25501Z", "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-07-31T17:46:29.925972025Z", + "created_at": "2025-08-01T23:14:24.308017Z", "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-07-31T17:46:30.108143385Z", + "created_at": "2025-08-01T23:14:24.360014Z", "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-07-31T17:46:30.289255107Z", + "created_at": "2025-08-01T23:14:24.413785Z", "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-07-31T17:46:30.467730564Z", + "created_at": "2025-08-01T23:14:24.466618Z", "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-07-31T17:46:30.648982445Z", + "created_at": "2025-08-01T23:14:24.519141Z", "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-07-31T17:46:30.830340138Z", + "created_at": "2025-08-01T23:14:24.572343Z", "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-07-31T17:46:31.010188241Z", + "created_at": "2025-08-01T23:14:24.626495Z", "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-07-31T17:46:31.193929127Z", + "created_at": "2025-08-01T23:14:24.683554Z", "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-07-31T17:46:31.376791155Z", + "created_at": "2025-08-01T23:14:24.736715Z", "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-07-31T17:46:31.556745128Z", + "created_at": "2025-08-01T23:14:24.789545Z", "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-07-31T17:46:31.736710894Z", + "created_at": "2025-08-01T23:14:24.842095Z", "done": true, "done_reason": "stop", - "total_duration": 5753329414, - "load_duration": 42032646, + "total_duration": 1141228125, + "load_duration": 38375333, "prompt_eval_count": 371, - "prompt_eval_duration": 2437350540, + "prompt_eval_duration": 99000000, "eval_count": 19, - "eval_duration": 3273363452, + "eval_duration": 1002000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/ef59cbff54d0.json b/tests/integration/recordings/responses/ef59cbff54d0.json index bf9c40660..e16cf605c 100644 --- a/tests/integration/recordings/responses/ef59cbff54d0.json +++ b/tests/integration/recordings/responses/ef59cbff54d0.json @@ -20,15 +20,15 @@ "__type__": "ollama._types.GenerateResponse", "__data__": { "model": "llama-guard3:1b", - "created_at": "2025-07-31T17:59:04.621241272Z", + "created_at": "2025-08-01T23:12:54.110896Z", "done": true, "done_reason": "stop", - "total_duration": 1020488139, - "load_duration": 48171516, + "total_duration": 219323916, + "load_duration": 109411750, "prompt_eval_count": 213, - "prompt_eval_duration": 924613213, + "prompt_eval_duration": 86000000, "eval_count": 2, - "eval_duration": 47179414, + "eval_duration": 22000000, "response": "safe", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/f477c2fe1332.json b/tests/integration/recordings/responses/f477c2fe1332.json index 36db1f056..2e29690ee 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-07-31T17:48:02.228613069Z", + "created_at": "2025-08-01T23:14:37.046199Z", "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-07-31T17:48:02.416516088Z", + "created_at": "2025-08-01T23:14:37.097228Z", "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-07-31T17:48:02.601455913Z", + "created_at": "2025-08-01T23:14:37.147575Z", "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-07-31T17:48:02.789779738Z", + "created_at": "2025-08-01T23:14:37.199038Z", "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-07-31T17:48:02.979797092Z", + "created_at": "2025-08-01T23:14:37.25106Z", "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-07-31T17:48:03.171273909Z", + "created_at": "2025-08-01T23:14:37.302712Z", "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-07-31T17:48:03.366307208Z", + "created_at": "2025-08-01T23:14:37.355658Z", "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-07-31T17:48:03.553860717Z", + "created_at": "2025-08-01T23:14:37.407436Z", "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-07-31T17:48:03.741050708Z", + "created_at": "2025-08-01T23:14:37.459062Z", "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-07-31T17:48:03.928660324Z", + "created_at": "2025-08-01T23:14:37.511804Z", "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-07-31T17:48:04.114285473Z", + "created_at": "2025-08-01T23:14:37.562406Z", "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-07-31T17:48:04.297051984Z", + "created_at": "2025-08-01T23:14:37.614648Z", "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-07-31T17:48:04.481247453Z", + "created_at": "2025-08-01T23:14:37.665414Z", "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-07-31T17:48:04.663502116Z", + "created_at": "2025-08-01T23:14:37.71826Z", "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-07-31T17:48:04.847068051Z", + "created_at": "2025-08-01T23:14:37.769822Z", "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-07-31T17:48:05.029468907Z", + "created_at": "2025-08-01T23:14:37.821049Z", "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-07-31T17:48:05.210665493Z", + "created_at": "2025-08-01T23:14:37.872903Z", "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-07-31T17:48:05.394445374Z", + "created_at": "2025-08-01T23:14:37.924976Z", "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-07-31T17:48:05.577557339Z", + "created_at": "2025-08-01T23:14:37.976776Z", "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-07-31T17:48:05.759740241Z", + "created_at": "2025-08-01T23:14:38.029285Z", "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-07-31T17:48:05.941978534Z", + "created_at": "2025-08-01T23:14:38.084154Z", "done": true, "done_reason": "stop", - "total_duration": 35821787819, - "load_duration": 41469279, + "total_duration": 1782717042, + "load_duration": 78612834, "prompt_eval_count": 375, - "prompt_eval_duration": 32065473198, + "prompt_eval_duration": 658000000, "eval_count": 21, - "eval_duration": 3714298846, + "eval_duration": 1044000000, "response": "", "thinking": null, "context": null diff --git a/tests/integration/recordings/responses/f70f30f54211.json b/tests/integration/recordings/responses/f70f30f54211.json new file mode 100644 index 000000000..e0ea9c016 --- /dev/null +++ b/tests/integration/recordings/responses/f70f30f54211.json @@ -0,0 +1,84 @@ +{ + "request": { + "method": "POST", + "url": "http://localhost:11434/v1/v1/chat/completions", + "headers": {}, + "body": { + "model": "llama3.2:3b-instruct-fp16", + "messages": [ + { + "role": "user", + "content": "What's the weather in Tokyo? Use the get_weather function to get the weather." + } + ], + "stream": false, + "tools": [ + { + "type": "function", + "function": { + "name": "get_weather", + "description": "Get the weather in a given city", + "parameters": { + "type": "object", + "properties": { + "city": { + "type": "string", + "description": "The city to get the weather for" + } + } + } + } + } + ] + }, + "endpoint": "/v1/chat/completions", + "model": "llama3.2:3b-instruct-fp16" + }, + "response": { + "body": { + "__type__": "openai.types.chat.chat_completion.ChatCompletion", + "__data__": { + "id": "chatcmpl-549", + "choices": [ + { + "finish_reason": "tool_calls", + "index": 0, + "logprobs": null, + "message": { + "content": "", + "refusal": null, + "role": "assistant", + "annotations": null, + "audio": null, + "function_call": null, + "tool_calls": [ + { + "id": "call_ybj7t2qt", + "function": { + "arguments": "{\"city\":\"Tokyo\"}", + "name": "get_weather" + }, + "type": "function", + "index": 0 + } + ] + } + } + ], + "created": 1754081857, + "model": "llama3.2:3b-instruct-fp16", + "object": "chat.completion", + "service_tier": null, + "system_fingerprint": "fp_ollama", + "usage": { + "completion_tokens": 18, + "prompt_tokens": 177, + "total_tokens": 195, + "completion_tokens_details": null, + "prompt_tokens_details": null + } + } + }, + "is_streaming": false + } +} diff --git a/tests/integration/recordings/responses/fcdef245da95.json b/tests/integration/recordings/responses/fcdef245da95.json index 1aa18e60f..04606b914 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-07-31T17:43:20.195368079Z", + "created_at": "2025-08-01T23:13:55.309172Z", "done": true, "done_reason": "stop", - "total_duration": 4029876004, - "load_duration": 1111568374, + "total_duration": 2252068541, + "load_duration": 240932958, "prompt_eval_count": 212, - "prompt_eval_duration": 2868613054, + "prompt_eval_duration": 1979000000, "eval_count": 2, - "eval_duration": 48866061, + "eval_duration": 25000000, "response": "safe", "thinking": null, "context": null