mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-03 19:57:35 +00:00
fix: Ensure that tool calls with no arguments get handled correctly (#3560)
# What does this PR do? When a model decides to use an MCP tool call that requires no arguments, it sets the `arguments` field to `None`. This causes the user to see a `400 bad requst error` due to validation errors down the stack because this field gets removed when being parsed by an openai compatible inference provider like vLLM This PR ensures that, as soon as the tool call args are accumulated while streaming, we check to ensure no tool call function arguments are set to None - if they are we replace them with "{}" <!-- If resolving an issue, uncomment and update the line below --> Closes #3456 ## Test Plan Added new unit test to verify that any tool calls with function arguments set to `None` get handled correctly --------- Signed-off-by: Jaideep Rao <jrao@redhat.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Ashwin Bharambe <ashwin.bharambe@gmail.com>
This commit is contained in:
parent
42414a1a1b
commit
ca47d90926
51 changed files with 11061 additions and 10200 deletions
|
@ -355,8 +355,11 @@ class StreamingResponseOrchestrator:
|
|||
|
||||
# Emit arguments.done events for completed tool calls (differentiate between MCP and function calls)
|
||||
for tool_call_index in sorted(chat_response_tool_calls.keys()):
|
||||
tool_call = chat_response_tool_calls[tool_call_index]
|
||||
# Ensure that arguments, if sent back to the inference provider, are not None
|
||||
tool_call.function.arguments = tool_call.function.arguments or "{}"
|
||||
tool_call_item_id = tool_call_item_ids[tool_call_index]
|
||||
final_arguments = chat_response_tool_calls[tool_call_index].function.arguments or ""
|
||||
final_arguments = tool_call.function.arguments
|
||||
tool_call_name = chat_response_tool_calls[tool_call_index].function.name
|
||||
|
||||
# Check if this is an MCP tool call
|
||||
|
|
|
@ -264,3 +264,36 @@ def test_function_call_output_response(openai_client, client_with_models, text_m
|
|||
assert (
|
||||
"sunny" in response2.output[0].content[0].text.lower() or "warm" in response2.output[0].content[0].text.lower()
|
||||
)
|
||||
|
||||
|
||||
def test_function_call_output_response_with_none_arguments(openai_client, client_with_models, text_model_id):
|
||||
"""Test handling of function call outputs in responses when function does not accept arguments."""
|
||||
if isinstance(client_with_models, LlamaStackAsLibraryClient):
|
||||
pytest.skip("OpenAI responses are not supported when testing with library client yet.")
|
||||
|
||||
client = openai_client
|
||||
|
||||
# First create a response that triggers a function call
|
||||
response = client.responses.create(
|
||||
model=text_model_id,
|
||||
input=[
|
||||
{
|
||||
"role": "user",
|
||||
"content": "what's the current time? You MUST call the `get_current_time` function to find out.",
|
||||
}
|
||||
],
|
||||
tools=[
|
||||
{
|
||||
"type": "function",
|
||||
"name": "get_current_time",
|
||||
"description": "Get the current time",
|
||||
"parameters": {},
|
||||
}
|
||||
],
|
||||
stream=False,
|
||||
)
|
||||
|
||||
# Verify we got a function call
|
||||
assert response.output[0].type == "function_call"
|
||||
assert response.output[0].arguments == "{}"
|
||||
_ = response.output[0].call_id
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-618",
|
||||
"id": "chatcmpl-447",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245078,
|
||||
"created": 1759282456,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:37:47.461886Z",
|
||||
"created_at": "2025-09-30T17:37:24.035083658Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 338927833,
|
||||
"load_duration": 100895125,
|
||||
"total_duration": 2990785181,
|
||||
"load_duration": 52933018,
|
||||
"prompt_eval_count": 223,
|
||||
"prompt_eval_duration": 221583042,
|
||||
"prompt_eval_duration": 2884018743,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 12341416,
|
||||
"eval_duration": 53216446,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -39,7 +39,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921333,
|
||||
"created": 1759254065,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -50,7 +50,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -65,7 +65,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921333,
|
||||
"created": 1759254066,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -91,7 +91,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921333,
|
||||
"created": 1759254066,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -102,7 +102,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -117,7 +117,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921333,
|
||||
"created": 1759254066,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -128,7 +128,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -143,7 +143,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921334,
|
||||
"created": 1759254066,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -154,7 +154,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -169,7 +169,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921334,
|
||||
"created": 1759254066,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -180,7 +180,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -195,7 +195,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921334,
|
||||
"created": 1759254067,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -206,7 +206,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-414",
|
||||
"id": "chatcmpl-106",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -221,7 +221,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921334,
|
||||
"created": 1759254067,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -55,7 +55,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253815,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -66,7 +66,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -81,7 +81,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253815,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -92,7 +92,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -107,7 +107,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253815,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -118,7 +118,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -133,7 +133,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253816,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -144,7 +144,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -159,7 +159,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253816,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -170,7 +170,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -185,7 +185,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253816,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -196,7 +196,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -211,7 +211,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253816,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -222,7 +222,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-921",
|
||||
"id": "chatcmpl-629",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -237,7 +237,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756920971,
|
||||
"created": 1759253816,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-438",
|
||||
"id": "chatcmpl-478",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245073,
|
||||
"created": 1759282396,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.436472Z",
|
||||
"created_at": "2025-10-01T01:34:06.144961341Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.478138Z",
|
||||
"created_at": "2025-10-01T01:34:06.3373667Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.519952Z",
|
||||
"created_at": "2025-10-01T01:34:06.532942727Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.561433Z",
|
||||
"created_at": "2025-10-01T01:34:06.728352251Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.603624Z",
|
||||
"created_at": "2025-10-01T01:34:06.924985367Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.645851Z",
|
||||
"created_at": "2025-10-01T01:34:07.121349528Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.688403Z",
|
||||
"created_at": "2025-10-01T01:34:07.318123626Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.72991Z",
|
||||
"created_at": "2025-10-01T01:34:07.51621183Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.771635Z",
|
||||
"created_at": "2025-10-01T01:34:07.715339999Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.813711Z",
|
||||
"created_at": "2025-10-01T01:34:07.911837801Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.856201Z",
|
||||
"created_at": "2025-10-01T01:34:08.111752821Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.899048Z",
|
||||
"created_at": "2025-10-01T01:34:08.31294106Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:50.94069Z",
|
||||
"created_at": "2025-10-01T01:34:08.520937013Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 688370708,
|
||||
"load_duration": 107469833,
|
||||
"total_duration": 4447759914,
|
||||
"load_duration": 44225114,
|
||||
"prompt_eval_count": 399,
|
||||
"prompt_eval_duration": 74988334,
|
||||
"prompt_eval_duration": 2025476521,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 505216458,
|
||||
"eval_duration": 2377545768,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.566151Z",
|
||||
"created_at": "2025-10-01T01:35:11.444139198Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.609308Z",
|
||||
"created_at": "2025-10-01T01:35:11.631417419Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.651314Z",
|
||||
"created_at": "2025-10-01T01:35:11.837785952Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.693185Z",
|
||||
"created_at": "2025-10-01T01:35:12.035361735Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.734643Z",
|
||||
"created_at": "2025-10-01T01:35:12.231459021Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.776343Z",
|
||||
"created_at": "2025-10-01T01:35:12.437587336Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.81705Z",
|
||||
"created_at": "2025-10-01T01:35:12.645814233Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.857959Z",
|
||||
"created_at": "2025-10-01T01:35:12.857399802Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.899424Z",
|
||||
"created_at": "2025-10-01T01:35:13.069748955Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.939218Z",
|
||||
"created_at": "2025-10-01T01:35:13.275446646Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:56.980065Z",
|
||||
"created_at": "2025-10-01T01:35:13.472121232Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.02214Z",
|
||||
"created_at": "2025-10-01T01:35:13.665744046Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.0628Z",
|
||||
"created_at": "2025-10-01T01:35:13.861581737Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.106061Z",
|
||||
"created_at": "2025-10-01T01:35:14.057543582Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.1492Z",
|
||||
"created_at": "2025-10-01T01:35:14.250235864Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.190075Z",
|
||||
"created_at": "2025-10-01T01:35:14.440950519Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.23178Z",
|
||||
"created_at": "2025-10-01T01:35:14.633159237Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.272738Z",
|
||||
"created_at": "2025-10-01T01:35:14.824645544Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,7 +346,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.313855Z",
|
||||
"created_at": "2025-10-01T01:35:15.015421713Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -364,7 +364,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.354964Z",
|
||||
"created_at": "2025-10-01T01:35:15.21010827Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -382,7 +382,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.395971Z",
|
||||
"created_at": "2025-10-01T01:35:15.406911964Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -400,7 +400,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.438471Z",
|
||||
"created_at": "2025-10-01T01:35:15.599086606Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -418,7 +418,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.479796Z",
|
||||
"created_at": "2025-10-01T01:35:15.789596143Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -436,7 +436,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.520641Z",
|
||||
"created_at": "2025-10-01T01:35:15.981551476Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -454,7 +454,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.561511Z",
|
||||
"created_at": "2025-10-01T01:35:16.170823008Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -472,7 +472,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.602875Z",
|
||||
"created_at": "2025-10-01T01:35:16.361099362Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -490,7 +490,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.643406Z",
|
||||
"created_at": "2025-10-01T01:35:16.554187248Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -508,7 +508,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.684279Z",
|
||||
"created_at": "2025-10-01T01:35:16.746364193Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -526,7 +526,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.725699Z",
|
||||
"created_at": "2025-10-01T01:35:16.937784556Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -544,7 +544,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.766658Z",
|
||||
"created_at": "2025-10-01T01:35:17.130739694Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -562,7 +562,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.80738Z",
|
||||
"created_at": "2025-10-01T01:35:17.324485154Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -580,7 +580,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.848466Z",
|
||||
"created_at": "2025-10-01T01:35:17.513221988Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -598,7 +598,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.889056Z",
|
||||
"created_at": "2025-10-01T01:35:17.704588587Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -616,7 +616,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.931554Z",
|
||||
"created_at": "2025-10-01T01:35:17.89491876Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -634,7 +634,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:57.974754Z",
|
||||
"created_at": "2025-10-01T01:35:18.085415685Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -652,7 +652,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.016978Z",
|
||||
"created_at": "2025-10-01T01:35:18.291123534Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -670,7 +670,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.057942Z",
|
||||
"created_at": "2025-10-01T01:35:18.481091772Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -688,7 +688,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.099015Z",
|
||||
"created_at": "2025-10-01T01:35:18.669330853Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -706,7 +706,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.140531Z",
|
||||
"created_at": "2025-10-01T01:35:18.862203802Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -724,7 +724,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.181382Z",
|
||||
"created_at": "2025-10-01T01:35:19.050586441Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -742,7 +742,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.223318Z",
|
||||
"created_at": "2025-10-01T01:35:19.243400941Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -760,7 +760,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.26358Z",
|
||||
"created_at": "2025-10-01T01:35:19.438492404Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -778,7 +778,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.305496Z",
|
||||
"created_at": "2025-10-01T01:35:19.625091169Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -796,7 +796,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.347254Z",
|
||||
"created_at": "2025-10-01T01:35:19.817882725Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -814,7 +814,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.390044Z",
|
||||
"created_at": "2025-10-01T01:35:20.006228518Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -832,7 +832,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.430867Z",
|
||||
"created_at": "2025-10-01T01:35:20.195451511Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -850,7 +850,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.471376Z",
|
||||
"created_at": "2025-10-01T01:35:20.38583856Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -868,7 +868,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.51208Z",
|
||||
"created_at": "2025-10-01T01:35:20.574736342Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -886,7 +886,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.553226Z",
|
||||
"created_at": "2025-10-01T01:35:20.770260046Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -904,7 +904,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.594787Z",
|
||||
"created_at": "2025-10-01T01:35:20.961391185Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -922,7 +922,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.63466Z",
|
||||
"created_at": "2025-10-01T01:35:21.15136915Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -940,7 +940,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.674628Z",
|
||||
"created_at": "2025-10-01T01:35:21.34012064Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -958,7 +958,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.714616Z",
|
||||
"created_at": "2025-10-01T01:35:21.530394237Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -976,7 +976,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.754906Z",
|
||||
"created_at": "2025-10-01T01:35:21.721043618Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -994,7 +994,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.795048Z",
|
||||
"created_at": "2025-10-01T01:35:21.911611623Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1012,7 +1012,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.835297Z",
|
||||
"created_at": "2025-10-01T01:35:22.100940877Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1030,7 +1030,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.875738Z",
|
||||
"created_at": "2025-10-01T01:35:22.289910353Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1048,7 +1048,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.91604Z",
|
||||
"created_at": "2025-10-01T01:35:22.476827205Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1066,7 +1066,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.956596Z",
|
||||
"created_at": "2025-10-01T01:35:22.663529325Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1084,7 +1084,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:58.996664Z",
|
||||
"created_at": "2025-10-01T01:35:22.851128482Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1102,7 +1102,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.037796Z",
|
||||
"created_at": "2025-10-01T01:35:23.042424694Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1120,7 +1120,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.078586Z",
|
||||
"created_at": "2025-10-01T01:35:23.234415016Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1138,7 +1138,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.119448Z",
|
||||
"created_at": "2025-10-01T01:35:23.422767727Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1156,7 +1156,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.160318Z",
|
||||
"created_at": "2025-10-01T01:35:23.611953916Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1174,7 +1174,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.201852Z",
|
||||
"created_at": "2025-10-01T01:35:23.802138602Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1192,7 +1192,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.243763Z",
|
||||
"created_at": "2025-10-01T01:35:23.993446989Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1210,7 +1210,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.284948Z",
|
||||
"created_at": "2025-10-01T01:35:24.186705934Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1228,7 +1228,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.325598Z",
|
||||
"created_at": "2025-10-01T01:35:24.39236955Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1246,7 +1246,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.366289Z",
|
||||
"created_at": "2025-10-01T01:35:24.579916625Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1264,7 +1264,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.406764Z",
|
||||
"created_at": "2025-10-01T01:35:24.768821839Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1282,7 +1282,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.447922Z",
|
||||
"created_at": "2025-10-01T01:35:24.957792215Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1300,7 +1300,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.488486Z",
|
||||
"created_at": "2025-10-01T01:35:25.147895529Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1318,7 +1318,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.529Z",
|
||||
"created_at": "2025-10-01T01:35:25.337348777Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1336,7 +1336,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.569417Z",
|
||||
"created_at": "2025-10-01T01:35:25.528043056Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1354,7 +1354,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.610542Z",
|
||||
"created_at": "2025-10-01T01:35:25.720598024Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1372,7 +1372,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.651411Z",
|
||||
"created_at": "2025-10-01T01:35:25.908813849Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1390,7 +1390,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.69241Z",
|
||||
"created_at": "2025-10-01T01:35:26.102538985Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1408,7 +1408,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.732339Z",
|
||||
"created_at": "2025-10-01T01:35:26.296587284Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1426,7 +1426,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.772462Z",
|
||||
"created_at": "2025-10-01T01:35:26.48997969Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1444,7 +1444,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.812507Z",
|
||||
"created_at": "2025-10-01T01:35:26.68461717Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1462,7 +1462,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.852762Z",
|
||||
"created_at": "2025-10-01T01:35:26.877976002Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1480,7 +1480,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.892984Z",
|
||||
"created_at": "2025-10-01T01:35:27.071304424Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1498,7 +1498,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.933555Z",
|
||||
"created_at": "2025-10-01T01:35:27.267083009Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1516,7 +1516,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:59.973778Z",
|
||||
"created_at": "2025-10-01T01:35:27.458752902Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1534,7 +1534,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.014923Z",
|
||||
"created_at": "2025-10-01T01:35:27.651757232Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1552,7 +1552,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.057464Z",
|
||||
"created_at": "2025-10-01T01:35:27.84093711Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1570,7 +1570,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.09902Z",
|
||||
"created_at": "2025-10-01T01:35:28.031166547Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1588,7 +1588,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.140492Z",
|
||||
"created_at": "2025-10-01T01:35:28.222014814Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1606,7 +1606,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.180239Z",
|
||||
"created_at": "2025-10-01T01:35:28.412024854Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1624,7 +1624,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.220364Z",
|
||||
"created_at": "2025-10-01T01:35:28.603242201Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1642,7 +1642,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.26097Z",
|
||||
"created_at": "2025-10-01T01:35:28.793015428Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1660,7 +1660,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.301228Z",
|
||||
"created_at": "2025-10-01T01:35:28.98105341Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1678,7 +1678,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.341631Z",
|
||||
"created_at": "2025-10-01T01:35:29.171562052Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1696,7 +1696,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.383006Z",
|
||||
"created_at": "2025-10-01T01:35:29.359960218Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1714,7 +1714,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.423509Z",
|
||||
"created_at": "2025-10-01T01:35:29.547663965Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1732,7 +1732,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.464702Z",
|
||||
"created_at": "2025-10-01T01:35:29.737967784Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1750,7 +1750,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.505914Z",
|
||||
"created_at": "2025-10-01T01:35:29.926196503Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1768,7 +1768,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.546505Z",
|
||||
"created_at": "2025-10-01T01:35:30.117904197Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1786,7 +1786,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.587839Z",
|
||||
"created_at": "2025-10-01T01:35:30.309146475Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -1804,15 +1804,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:00.629018Z",
|
||||
"created_at": "2025-10-01T01:35:30.497677975Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 4303339291,
|
||||
"load_duration": 156231250,
|
||||
"total_duration": 21228194411,
|
||||
"load_duration": 46730034,
|
||||
"prompt_eval_count": 36,
|
||||
"prompt_eval_duration": 81909875,
|
||||
"prompt_eval_duration": 2125755306,
|
||||
"eval_count": 100,
|
||||
"eval_duration": 4064559292,
|
||||
"eval_duration": 19055134812,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245080,
|
||||
"created": 1759282470,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:38:01.239743Z",
|
||||
"created_at": "2025-09-30T17:39:23.766462922Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 207264667,
|
||||
"load_duration": 73437959,
|
||||
"total_duration": 2859320770,
|
||||
"load_duration": 60934847,
|
||||
"prompt_eval_count": 216,
|
||||
"prompt_eval_duration": 121657333,
|
||||
"prompt_eval_duration": 2749991822,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11348417,
|
||||
"eval_duration": 47816462,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.625862Z",
|
||||
"created_at": "2025-10-01T01:38:20.882299989Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.668885Z",
|
||||
"created_at": "2025-10-01T01:38:21.078187004Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.710947Z",
|
||||
"created_at": "2025-10-01T01:38:21.272715034Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.752286Z",
|
||||
"created_at": "2025-10-01T01:38:21.469070891Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.793309Z",
|
||||
"created_at": "2025-10-01T01:38:21.673266264Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.834578Z",
|
||||
"created_at": "2025-10-01T01:38:21.873306711Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.876536Z",
|
||||
"created_at": "2025-10-01T01:38:22.070968284Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.918807Z",
|
||||
"created_at": "2025-10-01T01:38:22.269036335Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.960101Z",
|
||||
"created_at": "2025-10-01T01:38:22.465488517Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:33.00196Z",
|
||||
"created_at": "2025-10-01T01:38:22.658421677Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:33.043876Z",
|
||||
"created_at": "2025-10-01T01:38:22.852187817Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:33.08756Z",
|
||||
"created_at": "2025-10-01T01:38:23.049518191Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:33.12966Z",
|
||||
"created_at": "2025-10-01T01:38:23.248955312Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 648814958,
|
||||
"load_duration": 75300875,
|
||||
"total_duration": 4434138141,
|
||||
"load_duration": 43018186,
|
||||
"prompt_eval_count": 408,
|
||||
"prompt_eval_duration": 66740291,
|
||||
"prompt_eval_duration": 2022594115,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 505313125,
|
||||
"eval_duration": 2367937192,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:51.805591Z",
|
||||
"created_at": "2025-10-01T01:34:19.167396532Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:51.850067Z",
|
||||
"created_at": "2025-10-01T01:34:19.362195218Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:51.892443Z",
|
||||
"created_at": "2025-10-01T01:34:19.556896355Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:51.934364Z",
|
||||
"created_at": "2025-10-01T01:34:19.752258848Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:51.978382Z",
|
||||
"created_at": "2025-10-01T01:34:19.949688527Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.019332Z",
|
||||
"created_at": "2025-10-01T01:34:20.145337065Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.060708Z",
|
||||
"created_at": "2025-10-01T01:34:20.340739605Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.102717Z",
|
||||
"created_at": "2025-10-01T01:34:20.539146761Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.143996Z",
|
||||
"created_at": "2025-10-01T01:34:20.73590849Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.185479Z",
|
||||
"created_at": "2025-10-01T01:34:20.930252877Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.227562Z",
|
||||
"created_at": "2025-10-01T01:34:21.124432932Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.270178Z",
|
||||
"created_at": "2025-10-01T01:34:21.332871735Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.31151Z",
|
||||
"created_at": "2025-10-01T01:34:21.52851911Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.35278Z",
|
||||
"created_at": "2025-10-01T01:34:21.724649778Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.393954Z",
|
||||
"created_at": "2025-10-01T01:34:21.922353561Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.435238Z",
|
||||
"created_at": "2025-10-01T01:34:22.117061137Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.476197Z",
|
||||
"created_at": "2025-10-01T01:34:22.31230442Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.517914Z",
|
||||
"created_at": "2025-10-01T01:34:22.506582272Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,15 +346,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:52.55904Z",
|
||||
"created_at": "2025-10-01T01:34:22.702819703Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 971882292,
|
||||
"load_duration": 116634209,
|
||||
"total_duration": 6447413112,
|
||||
"load_duration": 45664730,
|
||||
"prompt_eval_count": 376,
|
||||
"prompt_eval_duration": 99382958,
|
||||
"prompt_eval_duration": 2864046437,
|
||||
"eval_count": 19,
|
||||
"eval_duration": 755260750,
|
||||
"eval_duration": 3537012183,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
101
tests/integration/recordings/responses/5c8d7ada4919.json
Normal file
101
tests/integration/recordings/responses/5c8d7ada4919.json
Normal file
|
@ -0,0 +1,101 @@
|
|||
{
|
||||
"request": {
|
||||
"method": "POST",
|
||||
"url": "http://0.0.0.0:11434/v1/v1/chat/completions",
|
||||
"headers": {},
|
||||
"body": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"messages": [
|
||||
{
|
||||
"role": "user",
|
||||
"content": "what's the current time? You MUST call the `get_current_time` function to find out."
|
||||
}
|
||||
],
|
||||
"response_format": {
|
||||
"type": "text"
|
||||
},
|
||||
"stream": true,
|
||||
"tools": [
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"type": "function",
|
||||
"name": "get_current_time",
|
||||
"description": "Get the current time",
|
||||
"parameters": {},
|
||||
"strict": null
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"endpoint": "/v1/chat/completions",
|
||||
"model": "llama3.2:3b-instruct-fp16"
|
||||
},
|
||||
"response": {
|
||||
"body": [
|
||||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-188",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
"content": "",
|
||||
"function_call": null,
|
||||
"refusal": null,
|
||||
"role": "assistant",
|
||||
"tool_calls": [
|
||||
{
|
||||
"index": 0,
|
||||
"id": "call_bij0w4gk",
|
||||
"function": {
|
||||
"arguments": "{}",
|
||||
"name": "get_current_time"
|
||||
},
|
||||
"type": "function"
|
||||
}
|
||||
]
|
||||
},
|
||||
"finish_reason": null,
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759253831,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
"system_fingerprint": "fp_ollama",
|
||||
"usage": null
|
||||
}
|
||||
},
|
||||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-188",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
"content": "",
|
||||
"function_call": null,
|
||||
"refusal": null,
|
||||
"role": "assistant",
|
||||
"tool_calls": null
|
||||
},
|
||||
"finish_reason": "tool_calls",
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759253831,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
"system_fingerprint": "fp_ollama",
|
||||
"usage": null
|
||||
}
|
||||
}
|
||||
],
|
||||
"is_streaming": true
|
||||
}
|
||||
}
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:38:00.98692Z",
|
||||
"created_at": "2025-09-30T17:39:20.866577556Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 332473583,
|
||||
"load_duration": 90611333,
|
||||
"total_duration": 4350589762,
|
||||
"load_duration": 53782244,
|
||||
"prompt_eval_count": 317,
|
||||
"prompt_eval_duration": 229691000,
|
||||
"prompt_eval_duration": 4243686737,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11571291,
|
||||
"eval_duration": 52523173,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-738",
|
||||
"id": "chatcmpl-819",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245079,
|
||||
"created": 1759282466,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.549266Z",
|
||||
"created_at": "2025-10-01T01:36:25.060343636Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.592203Z",
|
||||
"created_at": "2025-10-01T01:36:25.261200569Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.63417Z",
|
||||
"created_at": "2025-10-01T01:36:25.462791752Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.677268Z",
|
||||
"created_at": "2025-10-01T01:36:25.660954264Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.719768Z",
|
||||
"created_at": "2025-10-01T01:36:25.857710285Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.762204Z",
|
||||
"created_at": "2025-10-01T01:36:26.055796043Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.80404Z",
|
||||
"created_at": "2025-10-01T01:36:26.256947843Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.845678Z",
|
||||
"created_at": "2025-10-01T01:36:26.454224889Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.887086Z",
|
||||
"created_at": "2025-10-01T01:36:26.663146208Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.928422Z",
|
||||
"created_at": "2025-10-01T01:36:26.878266227Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:03.969641Z",
|
||||
"created_at": "2025-10-01T01:36:27.086618766Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.011212Z",
|
||||
"created_at": "2025-10-01T01:36:27.28577576Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.052626Z",
|
||||
"created_at": "2025-10-01T01:36:27.484586207Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 731936583,
|
||||
"load_duration": 147334791,
|
||||
"total_duration": 4491434092,
|
||||
"load_duration": 44110434,
|
||||
"prompt_eval_count": 417,
|
||||
"prompt_eval_duration": 79443792,
|
||||
"prompt_eval_duration": 2021505668,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 504352750,
|
||||
"eval_duration": 2425224707,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:01.89965Z",
|
||||
"created_at": "2025-10-01T01:36:11.873171882Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:01.941253Z",
|
||||
"created_at": "2025-10-01T01:36:12.073738984Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:01.982621Z",
|
||||
"created_at": "2025-10-01T01:36:12.272476639Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.024144Z",
|
||||
"created_at": "2025-10-01T01:36:12.469220325Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.065495Z",
|
||||
"created_at": "2025-10-01T01:36:12.665965955Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.107529Z",
|
||||
"created_at": "2025-10-01T01:36:12.860442987Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.149217Z",
|
||||
"created_at": "2025-10-01T01:36:13.055440385Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.190357Z",
|
||||
"created_at": "2025-10-01T01:36:13.25612888Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.231501Z",
|
||||
"created_at": "2025-10-01T01:36:13.454322876Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.272546Z",
|
||||
"created_at": "2025-10-01T01:36:13.651445403Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.313561Z",
|
||||
"created_at": "2025-10-01T01:36:13.851107226Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.354563Z",
|
||||
"created_at": "2025-10-01T01:36:14.048095911Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.395585Z",
|
||||
"created_at": "2025-10-01T01:36:14.250994986Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.436854Z",
|
||||
"created_at": "2025-10-01T01:36:14.454971706Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.47814Z",
|
||||
"created_at": "2025-10-01T01:36:14.654349738Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.519661Z",
|
||||
"created_at": "2025-10-01T01:36:14.851507509Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.561119Z",
|
||||
"created_at": "2025-10-01T01:36:15.044987002Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.602821Z",
|
||||
"created_at": "2025-10-01T01:36:15.246563515Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,15 +346,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:02.644633Z",
|
||||
"created_at": "2025-10-01T01:36:15.447689838Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 1375629459,
|
||||
"load_duration": 94090250,
|
||||
"total_duration": 35945660492,
|
||||
"load_duration": 42881569,
|
||||
"prompt_eval_count": 386,
|
||||
"prompt_eval_duration": 535119167,
|
||||
"prompt_eval_duration": 32326727198,
|
||||
"eval_count": 19,
|
||||
"eval_duration": 745684041,
|
||||
"eval_duration": 3575452190,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -41,7 +41,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-116",
|
||||
"id": "chatcmpl-72",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -52,7 +52,7 @@
|
|||
"tool_calls": [
|
||||
{
|
||||
"index": 0,
|
||||
"id": "call_0c2qffvv",
|
||||
"id": "call_aone7ocw",
|
||||
"function": {
|
||||
"arguments": "{\"city\":\"Tokyo\"}",
|
||||
"name": "get_weather"
|
||||
|
@ -66,7 +66,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267492,
|
||||
"created": 1759282724,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -77,7 +77,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-116",
|
||||
"id": "chatcmpl-72",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -87,12 +87,12 @@
|
|||
"role": "assistant",
|
||||
"tool_calls": null
|
||||
},
|
||||
"finish_reason": "stop",
|
||||
"finish_reason": "tool_calls",
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267492,
|
||||
"created": 1759282724,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-236",
|
||||
"id": "chatcmpl-737",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759247859,
|
||||
"created": 1759282582,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:48.840898Z",
|
||||
"created_at": "2025-10-01T01:33:52.93635761Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:48.883619Z",
|
||||
"created_at": "2025-10-01T01:33:53.133195005Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:48.92504Z",
|
||||
"created_at": "2025-10-01T01:33:53.332277092Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:48.966274Z",
|
||||
"created_at": "2025-10-01T01:33:53.529012616Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.007525Z",
|
||||
"created_at": "2025-10-01T01:33:53.724651797Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.049125Z",
|
||||
"created_at": "2025-10-01T01:33:53.923248219Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.090893Z",
|
||||
"created_at": "2025-10-01T01:33:54.117881107Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.132101Z",
|
||||
"created_at": "2025-10-01T01:33:54.311986552Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.17401Z",
|
||||
"created_at": "2025-10-01T01:33:54.505749874Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.216115Z",
|
||||
"created_at": "2025-10-01T01:33:54.699245098Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.257109Z",
|
||||
"created_at": "2025-10-01T01:33:54.890029079Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.298731Z",
|
||||
"created_at": "2025-10-01T01:33:55.081182058Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.338833Z",
|
||||
"created_at": "2025-10-01T01:33:55.27115012Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.38053Z",
|
||||
"created_at": "2025-10-01T01:33:55.46403171Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.421378Z",
|
||||
"created_at": "2025-10-01T01:33:55.655042212Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.462646Z",
|
||||
"created_at": "2025-10-01T01:33:55.844320935Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.503814Z",
|
||||
"created_at": "2025-10-01T01:33:56.035465828Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.545397Z",
|
||||
"created_at": "2025-10-01T01:33:56.240155299Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,15 +346,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:49.586834Z",
|
||||
"created_at": "2025-10-01T01:33:56.432393304Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 1409239209,
|
||||
"load_duration": 118889250,
|
||||
"total_duration": 34185152900,
|
||||
"load_duration": 44303323,
|
||||
"prompt_eval_count": 368,
|
||||
"prompt_eval_duration": 543077166,
|
||||
"prompt_eval_duration": 30642631331,
|
||||
"eval_count": 19,
|
||||
"eval_duration": 746733584,
|
||||
"eval_duration": 3497664639,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.708948Z",
|
||||
"created_at": "2025-10-01T01:33:10.76700718Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.749031Z",
|
||||
"created_at": "2025-10-01T01:33:10.956949035Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.790192Z",
|
||||
"created_at": "2025-10-01T01:33:11.147886127Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.831093Z",
|
||||
"created_at": "2025-10-01T01:33:11.337832912Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.873135Z",
|
||||
"created_at": "2025-10-01T01:33:11.524017554Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.91375Z",
|
||||
"created_at": "2025-10-01T01:33:11.712703934Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.95439Z",
|
||||
"created_at": "2025-10-01T01:33:11.903877596Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:46.995224Z",
|
||||
"created_at": "2025-10-01T01:33:12.095535165Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:47.035887Z",
|
||||
"created_at": "2025-10-01T01:33:12.291614477Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,15 +184,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:47.076806Z",
|
||||
"created_at": "2025-10-01T01:33:12.483844314Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 2069654958,
|
||||
"load_duration": 177579833,
|
||||
"total_duration": 4303509972,
|
||||
"load_duration": 44748689,
|
||||
"prompt_eval_count": 31,
|
||||
"prompt_eval_duration": 1521851250,
|
||||
"prompt_eval_duration": 2539513749,
|
||||
"eval_count": 10,
|
||||
"eval_duration": 369478042,
|
||||
"eval_duration": 1718623697,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:37:51.562847Z",
|
||||
"created_at": "2025-09-30T17:38:19.258171865Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 272296250,
|
||||
"load_duration": 131747125,
|
||||
"total_duration": 2789705003,
|
||||
"load_duration": 60163509,
|
||||
"prompt_eval_count": 214,
|
||||
"prompt_eval_duration": 124006709,
|
||||
"prompt_eval_duration": 2677292181,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 15572291,
|
||||
"eval_duration": 51690110,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:37:47.871962Z",
|
||||
"created_at": "2025-09-30T17:37:27.310573231Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 301629042,
|
||||
"load_duration": 102832917,
|
||||
"total_duration": 3251121805,
|
||||
"load_duration": 47089617,
|
||||
"prompt_eval_count": 233,
|
||||
"prompt_eval_duration": 154806625,
|
||||
"prompt_eval_duration": 3006835928,
|
||||
"eval_count": 5,
|
||||
"eval_duration": 43361542,
|
||||
"eval_duration": 196620033,
|
||||
"response": "unsafe\nS1",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-344",
|
||||
"id": "chatcmpl-165",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759247858,
|
||||
"created": 1759282579,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-119",
|
||||
"id": "chatcmpl-609",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245069,
|
||||
"created": 1759282388,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -52,7 +52,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282364,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -63,7 +63,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -78,7 +78,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282364,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -89,7 +89,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -104,7 +104,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282364,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -115,7 +115,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -130,7 +130,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282364,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -141,7 +141,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -156,7 +156,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282365,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -167,7 +167,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -182,7 +182,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282365,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -193,7 +193,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -208,7 +208,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282365,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -219,7 +219,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-676",
|
||||
"id": "chatcmpl-79",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -234,7 +234,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759267544,
|
||||
"created": 1759282365,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.748684225Z",
|
||||
"created_at": "2025-10-01T01:34:32.266493609Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.761891114Z",
|
||||
"created_at": "2025-10-01T01:34:32.468394034Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.772555814Z",
|
||||
"created_at": "2025-10-01T01:34:32.668683201Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.782836359Z",
|
||||
"created_at": "2025-10-01T01:34:32.86812Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.792350554Z",
|
||||
"created_at": "2025-10-01T01:34:33.066156104Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.801914057Z",
|
||||
"created_at": "2025-10-01T01:34:33.258437386Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.811393683Z",
|
||||
"created_at": "2025-10-01T01:34:33.455421239Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.820947077Z",
|
||||
"created_at": "2025-10-01T01:34:33.653866336Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.830440923Z",
|
||||
"created_at": "2025-10-01T01:34:33.849413071Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.840009115Z",
|
||||
"created_at": "2025-10-01T01:34:34.044100975Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.850657096Z",
|
||||
"created_at": "2025-10-01T01:34:34.239766712Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.860246788Z",
|
||||
"created_at": "2025-10-01T01:34:34.435865862Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-30T15:57:30.869711085Z",
|
||||
"created_at": "2025-10-01T01:34:34.629495297Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 287660073,
|
||||
"load_duration": 149338464,
|
||||
"total_duration": 4426089450,
|
||||
"load_duration": 45156482,
|
||||
"prompt_eval_count": 407,
|
||||
"prompt_eval_duration": 9497286,
|
||||
"prompt_eval_duration": 2016388423,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 128120190,
|
||||
"eval_duration": 2363948468,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:37:52.965106Z",
|
||||
"created_at": "2025-09-30T17:38:28.757983551Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 376594792,
|
||||
"load_duration": 158273792,
|
||||
"total_duration": 2983247976,
|
||||
"load_duration": 54874758,
|
||||
"prompt_eval_count": 217,
|
||||
"prompt_eval_duration": 177001375,
|
||||
"prompt_eval_duration": 2733668666,
|
||||
"eval_count": 5,
|
||||
"eval_duration": 40927500,
|
||||
"eval_duration": 194120880,
|
||||
"response": "unsafe\nS1",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.505006Z",
|
||||
"created_at": "2025-10-01T01:34:45.948323264Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.547032Z",
|
||||
"created_at": "2025-10-01T01:34:46.150643413Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.588985Z",
|
||||
"created_at": "2025-10-01T01:34:46.345718638Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.631139Z",
|
||||
"created_at": "2025-10-01T01:34:46.536839034Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.67269Z",
|
||||
"created_at": "2025-10-01T01:34:46.730927915Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.714798Z",
|
||||
"created_at": "2025-10-01T01:34:46.923249037Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.756492Z",
|
||||
"created_at": "2025-10-01T01:34:47.118794722Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.798115Z",
|
||||
"created_at": "2025-10-01T01:34:47.311093083Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.840012Z",
|
||||
"created_at": "2025-10-01T01:34:47.500911354Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.882555Z",
|
||||
"created_at": "2025-10-01T01:34:47.691237236Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.924566Z",
|
||||
"created_at": "2025-10-01T01:34:47.88193831Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:53.966279Z",
|
||||
"created_at": "2025-10-01T01:34:48.072350123Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.008483Z",
|
||||
"created_at": "2025-10-01T01:34:48.264819734Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.050042Z",
|
||||
"created_at": "2025-10-01T01:34:48.46196594Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.092416Z",
|
||||
"created_at": "2025-10-01T01:34:48.664135581Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.134857Z",
|
||||
"created_at": "2025-10-01T01:34:48.860761943Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.176408Z",
|
||||
"created_at": "2025-10-01T01:34:49.058887372Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.217553Z",
|
||||
"created_at": "2025-10-01T01:34:49.255951122Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,15 +346,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:54.259141Z",
|
||||
"created_at": "2025-10-01T01:34:49.448811175Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 1008303875,
|
||||
"load_duration": 119709875,
|
||||
"total_duration": 7098227825,
|
||||
"load_duration": 42591593,
|
||||
"prompt_eval_count": 384,
|
||||
"prompt_eval_duration": 132645959,
|
||||
"prompt_eval_duration": 3553000114,
|
||||
"eval_count": 19,
|
||||
"eval_duration": 755215708,
|
||||
"eval_duration": 3502025035,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.13567Z",
|
||||
"created_at": "2025-10-01T01:34:59.108944421Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.17774Z",
|
||||
"created_at": "2025-10-01T01:34:59.303969394Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.220061Z",
|
||||
"created_at": "2025-10-01T01:34:59.496380344Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.261406Z",
|
||||
"created_at": "2025-10-01T01:34:59.690402813Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.302615Z",
|
||||
"created_at": "2025-10-01T01:34:59.886883901Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.343879Z",
|
||||
"created_at": "2025-10-01T01:35:00.092344957Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.384951Z",
|
||||
"created_at": "2025-10-01T01:35:00.294533906Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.426563Z",
|
||||
"created_at": "2025-10-01T01:35:00.491944714Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.467648Z",
|
||||
"created_at": "2025-10-01T01:35:00.687125699Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.509469Z",
|
||||
"created_at": "2025-10-01T01:35:00.883643235Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.552302Z",
|
||||
"created_at": "2025-10-01T01:35:01.078457636Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.596236Z",
|
||||
"created_at": "2025-10-01T01:35:01.278324163Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:37:55.637816Z",
|
||||
"created_at": "2025-10-01T01:35:01.476682242Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 726849208,
|
||||
"load_duration": 147625750,
|
||||
"total_duration": 4443849560,
|
||||
"load_duration": 44492422,
|
||||
"prompt_eval_count": 415,
|
||||
"prompt_eval_duration": 75722709,
|
||||
"prompt_eval_duration": 2029440575,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 502787333,
|
||||
"eval_duration": 2369292378,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:38:03.270261Z",
|
||||
"created_at": "2025-09-30T17:40:05.569054257Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 244051875,
|
||||
"load_duration": 111239500,
|
||||
"total_duration": 2957218530,
|
||||
"load_duration": 54048822,
|
||||
"prompt_eval_count": 224,
|
||||
"prompt_eval_duration": 120962791,
|
||||
"prompt_eval_duration": 2853937923,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11306292,
|
||||
"eval_duration": 48703790,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:38:04.367295Z",
|
||||
"created_at": "2025-09-30T17:40:13.28032796Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 276503250,
|
||||
"load_duration": 125852000,
|
||||
"total_duration": 3178842015,
|
||||
"load_duration": 44428132,
|
||||
"prompt_eval_count": 238,
|
||||
"prompt_eval_duration": 138575125,
|
||||
"prompt_eval_duration": 3081272287,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11277208,
|
||||
"eval_duration": 52562543,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-316",
|
||||
"id": "chatcmpl-489",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759247858,
|
||||
"created": 1759282539,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-963",
|
||||
"id": "chatcmpl-876",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245073,
|
||||
"created": 1759282400,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-240",
|
||||
"id": "chatcmpl-306",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245081,
|
||||
"created": 1759282478,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:38:03.002753Z",
|
||||
"created_at": "2025-09-30T17:40:02.587880074Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 334941166,
|
||||
"load_duration": 149512166,
|
||||
"total_duration": 2895949169,
|
||||
"load_duration": 45631237,
|
||||
"prompt_eval_count": 219,
|
||||
"prompt_eval_duration": 173843500,
|
||||
"prompt_eval_duration": 2801365130,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11119166,
|
||||
"eval_duration": 48315364,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
98
tests/integration/recordings/responses/cbd6b65e0622.json
Normal file
98
tests/integration/recordings/responses/cbd6b65e0622.json
Normal file
|
@ -0,0 +1,98 @@
|
|||
{
|
||||
"request": {
|
||||
"method": "POST",
|
||||
"url": "http://0.0.0.0:11434/v1/v1/chat/completions",
|
||||
"headers": {},
|
||||
"body": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"messages": [
|
||||
{
|
||||
"role": "user",
|
||||
"content": "what's the current time? You MUST call the `get_current_time` function to find out."
|
||||
}
|
||||
],
|
||||
"stream": true,
|
||||
"tools": [
|
||||
{
|
||||
"type": "function",
|
||||
"function": {
|
||||
"type": "function",
|
||||
"name": "get_current_time",
|
||||
"description": "Get the current time",
|
||||
"parameters": {},
|
||||
"strict": null
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"endpoint": "/v1/chat/completions",
|
||||
"model": "llama3.2:3b-instruct-fp16"
|
||||
},
|
||||
"response": {
|
||||
"body": [
|
||||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-979",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
"content": "",
|
||||
"function_call": null,
|
||||
"refusal": null,
|
||||
"role": "assistant",
|
||||
"tool_calls": [
|
||||
{
|
||||
"index": 0,
|
||||
"id": "call_ik598ri6",
|
||||
"function": {
|
||||
"arguments": "{}",
|
||||
"name": "get_current_time"
|
||||
},
|
||||
"type": "function"
|
||||
}
|
||||
]
|
||||
},
|
||||
"finish_reason": null,
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759282380,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
"system_fingerprint": "fp_ollama",
|
||||
"usage": null
|
||||
}
|
||||
},
|
||||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-979",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
"content": "",
|
||||
"function_call": null,
|
||||
"refusal": null,
|
||||
"role": "assistant",
|
||||
"tool_calls": null
|
||||
},
|
||||
"finish_reason": "tool_calls",
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759282380,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
"system_fingerprint": "fp_ollama",
|
||||
"usage": null
|
||||
}
|
||||
}
|
||||
],
|
||||
"is_streaming": true
|
||||
}
|
||||
}
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-325",
|
||||
"id": "chatcmpl-251",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759247860,
|
||||
"created": 1759282591,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -36,7 +36,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282661,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -47,7 +47,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -62,7 +62,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282661,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -73,7 +73,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -88,7 +88,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282661,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -99,7 +99,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -114,7 +114,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282661,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -125,7 +125,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -140,7 +140,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282661,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -151,7 +151,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -166,7 +166,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282662,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -177,7 +177,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -192,7 +192,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282662,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -203,7 +203,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-78",
|
||||
"id": "chatcmpl-615",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -218,7 +218,7 @@
|
|||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1759259077,
|
||||
"created": 1759282662,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -11,27 +11,7 @@
|
|||
"body": {
|
||||
"__type__": "ollama._types.ProcessResponse",
|
||||
"__data__": {
|
||||
"models": [
|
||||
{
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"name": "llama3.2:3b-instruct-fp16",
|
||||
"digest": "195a8c01d91ec3cb1e0aad4624a51f2602c51fa7d96110f8ab5a20c84081804d",
|
||||
"expires_at": "2025-09-30T14:29:52.682809-07:00",
|
||||
"size": 8581748736,
|
||||
"size_vram": 8581748736,
|
||||
"details": {
|
||||
"parent_model": "",
|
||||
"format": "gguf",
|
||||
"family": "llama",
|
||||
"families": [
|
||||
"llama"
|
||||
],
|
||||
"parameter_size": "3.2B",
|
||||
"quantization_level": "F16"
|
||||
},
|
||||
"context_length": null
|
||||
}
|
||||
]
|
||||
"models": []
|
||||
}
|
||||
},
|
||||
"is_streaming": false
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
"body": {
|
||||
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-56",
|
||||
"id": "chatcmpl-480",
|
||||
"choices": [
|
||||
{
|
||||
"finish_reason": "stop",
|
||||
|
@ -38,7 +38,7 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"created": 1759245088,
|
||||
"created": 1759282535,
|
||||
"model": "llama-guard3:1b",
|
||||
"object": "chat.completion",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.682744Z",
|
||||
"created_at": "2025-10-01T01:36:39.731839864Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.72605Z",
|
||||
"created_at": "2025-10-01T01:36:39.927398349Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.770654Z",
|
||||
"created_at": "2025-10-01T01:36:40.131176362Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.819087Z",
|
||||
"created_at": "2025-10-01T01:36:40.3289863Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.862915Z",
|
||||
"created_at": "2025-10-01T01:36:40.527460869Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.913209Z",
|
||||
"created_at": "2025-10-01T01:36:40.722852039Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.951646Z",
|
||||
"created_at": "2025-10-01T01:36:40.922357134Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.996738Z",
|
||||
"created_at": "2025-10-01T01:36:41.142449109Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:06.046726Z",
|
||||
"created_at": "2025-10-01T01:36:41.34351538Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:06.08508Z",
|
||||
"created_at": "2025-10-01T01:36:41.544611985Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:06.128566Z",
|
||||
"created_at": "2025-10-01T01:36:41.746118193Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:06.173309Z",
|
||||
"created_at": "2025-10-01T01:36:41.949240209Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,15 +238,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:06.218818Z",
|
||||
"created_at": "2025-10-01T01:36:42.151060868Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 755252250,
|
||||
"load_duration": 141479625,
|
||||
"total_duration": 4482970180,
|
||||
"load_duration": 43494552,
|
||||
"prompt_eval_count": 402,
|
||||
"prompt_eval_duration": 76304166,
|
||||
"prompt_eval_duration": 2018500580,
|
||||
"eval_count": 13,
|
||||
"eval_duration": 536202125,
|
||||
"eval_duration": 2420393884,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -44,22 +44,32 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-202",
|
||||
"id": "chatcmpl-163",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
"content": "{\"name\":\"get_weather\",\"parameters{\"key\"]=\"Tokyo\"}}",
|
||||
"content": "",
|
||||
"function_call": null,
|
||||
"refusal": null,
|
||||
"role": "assistant",
|
||||
"tool_calls": null
|
||||
"tool_calls": [
|
||||
{
|
||||
"index": 0,
|
||||
"id": "call_5gqadim6",
|
||||
"function": {
|
||||
"arguments": "{\"city\":\"Tokyo\"}",
|
||||
"name": "get_weather"
|
||||
},
|
||||
"type": "function"
|
||||
}
|
||||
]
|
||||
},
|
||||
"finish_reason": null,
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921363,
|
||||
"created": 1759254129,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
@ -70,7 +80,7 @@
|
|||
{
|
||||
"__type__": "openai.types.chat.chat_completion_chunk.ChatCompletionChunk",
|
||||
"__data__": {
|
||||
"id": "chatcmpl-202",
|
||||
"id": "chatcmpl-163",
|
||||
"choices": [
|
||||
{
|
||||
"delta": {
|
||||
|
@ -80,12 +90,12 @@
|
|||
"role": "assistant",
|
||||
"tool_calls": null
|
||||
},
|
||||
"finish_reason": "stop",
|
||||
"finish_reason": "tool_calls",
|
||||
"index": 0,
|
||||
"logprobs": null
|
||||
}
|
||||
],
|
||||
"created": 1756921363,
|
||||
"created": 1759254129,
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"object": "chat.completion.chunk",
|
||||
"service_tier": null,
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.631107Z",
|
||||
"created_at": "2025-10-01T01:36:34.037711241Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.673105Z",
|
||||
"created_at": "2025-10-01T01:36:34.234670218Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.714459Z",
|
||||
"created_at": "2025-10-01T01:36:34.430073402Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.755882Z",
|
||||
"created_at": "2025-10-01T01:36:34.629562851Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.797494Z",
|
||||
"created_at": "2025-10-01T01:36:34.828769603Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.839382Z",
|
||||
"created_at": "2025-10-01T01:36:35.027101431Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.881062Z",
|
||||
"created_at": "2025-10-01T01:36:35.228873906Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.921976Z",
|
||||
"created_at": "2025-10-01T01:36:35.429147653Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:04.962922Z",
|
||||
"created_at": "2025-10-01T01:36:35.626756664Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.00411Z",
|
||||
"created_at": "2025-10-01T01:36:35.822847752Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.04532Z",
|
||||
"created_at": "2025-10-01T01:36:36.021190515Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.086979Z",
|
||||
"created_at": "2025-10-01T01:36:36.228035317Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.128195Z",
|
||||
"created_at": "2025-10-01T01:36:36.424413535Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.169221Z",
|
||||
"created_at": "2025-10-01T01:36:36.62756048Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.210938Z",
|
||||
"created_at": "2025-10-01T01:36:36.828422414Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.252232Z",
|
||||
"created_at": "2025-10-01T01:36:37.033389762Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.293529Z",
|
||||
"created_at": "2025-10-01T01:36:37.239556153Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.334965Z",
|
||||
"created_at": "2025-10-01T01:36:37.448526412Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,15 +346,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:38:05.376741Z",
|
||||
"created_at": "2025-10-01T01:36:37.648660737Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 936717042,
|
||||
"load_duration": 109245542,
|
||||
"total_duration": 6101960547,
|
||||
"load_duration": 42550477,
|
||||
"prompt_eval_count": 371,
|
||||
"prompt_eval_duration": 80430583,
|
||||
"prompt_eval_duration": 2446898261,
|
||||
"eval_count": 19,
|
||||
"eval_duration": 746422917,
|
||||
"eval_duration": 3611916940,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.583665Z",
|
||||
"created_at": "2025-10-01T01:38:14.816773611Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -40,7 +40,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.625653Z",
|
||||
"created_at": "2025-10-01T01:38:15.015836301Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -58,7 +58,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.667189Z",
|
||||
"created_at": "2025-10-01T01:38:15.213696526Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -76,7 +76,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.708905Z",
|
||||
"created_at": "2025-10-01T01:38:15.414929406Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -94,7 +94,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.751003Z",
|
||||
"created_at": "2025-10-01T01:38:15.611961584Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -112,7 +112,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.792516Z",
|
||||
"created_at": "2025-10-01T01:38:15.810925669Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -130,7 +130,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.834194Z",
|
||||
"created_at": "2025-10-01T01:38:16.024560322Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -148,7 +148,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.878321Z",
|
||||
"created_at": "2025-10-01T01:38:16.221109927Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -166,7 +166,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.921552Z",
|
||||
"created_at": "2025-10-01T01:38:16.417436307Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -184,7 +184,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:31.963105Z",
|
||||
"created_at": "2025-10-01T01:38:16.617952673Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -202,7 +202,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.005494Z",
|
||||
"created_at": "2025-10-01T01:38:16.813239478Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -220,7 +220,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.047231Z",
|
||||
"created_at": "2025-10-01T01:38:17.014012745Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -238,7 +238,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.089031Z",
|
||||
"created_at": "2025-10-01T01:38:17.21415578Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -256,7 +256,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.130704Z",
|
||||
"created_at": "2025-10-01T01:38:17.411442027Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -274,7 +274,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.172183Z",
|
||||
"created_at": "2025-10-01T01:38:17.610203746Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -292,7 +292,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.21392Z",
|
||||
"created_at": "2025-10-01T01:38:17.806756435Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -310,7 +310,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.255392Z",
|
||||
"created_at": "2025-10-01T01:38:18.009202601Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -328,7 +328,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.297249Z",
|
||||
"created_at": "2025-10-01T01:38:18.204934978Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -346,7 +346,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.341358Z",
|
||||
"created_at": "2025-10-01T01:38:18.402371167Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -364,7 +364,7 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.384155Z",
|
||||
"created_at": "2025-10-01T01:38:18.598001673Z",
|
||||
"done": false,
|
||||
"done_reason": null,
|
||||
"total_duration": null,
|
||||
|
@ -382,15 +382,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama3.2:3b-instruct-fp16",
|
||||
"created_at": "2025-09-03T17:42:32.426441Z",
|
||||
"created_at": "2025-10-01T01:38:18.795317047Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 1659557917,
|
||||
"load_duration": 75341875,
|
||||
"total_duration": 36201749155,
|
||||
"load_duration": 41187586,
|
||||
"prompt_eval_count": 375,
|
||||
"prompt_eval_duration": 740178250,
|
||||
"prompt_eval_duration": 32180468680,
|
||||
"eval_count": 21,
|
||||
"eval_duration": 843394541,
|
||||
"eval_duration": 3979448369,
|
||||
"response": "",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -20,15 +20,15 @@
|
|||
"__type__": "ollama._types.GenerateResponse",
|
||||
"__data__": {
|
||||
"model": "llama-guard3:1b",
|
||||
"created_at": "2025-09-03T17:37:44.986629Z",
|
||||
"created_at": "2025-09-30T17:37:16.577132681Z",
|
||||
"done": true,
|
||||
"done_reason": "stop",
|
||||
"total_duration": 285693167,
|
||||
"load_duration": 110888542,
|
||||
"total_duration": 4644975499,
|
||||
"load_duration": 1639168216,
|
||||
"prompt_eval_count": 212,
|
||||
"prompt_eval_duration": 163158250,
|
||||
"prompt_eval_duration": 2946622894,
|
||||
"eval_count": 2,
|
||||
"eval_duration": 11080125,
|
||||
"eval_duration": 58451208,
|
||||
"response": "safe",
|
||||
"thinking": null,
|
||||
"context": null
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"request": {
|
||||
"method": "POST",
|
||||
"url": "http://0.0.0.0:11434/v1/v1/models",
|
||||
"headers": {},
|
||||
"body": {},
|
||||
"endpoint": "/v1/models",
|
||||
"model": ""
|
||||
},
|
||||
"response": {
|
||||
"body": [
|
||||
{
|
||||
"__type__": "openai.types.model.Model",
|
||||
"__data__": {
|
||||
"id": "llama-guard3:1b",
|
||||
"created": 1753937098,
|
||||
"object": "model",
|
||||
"owned_by": "library"
|
||||
}
|
||||
},
|
||||
{
|
||||
"__type__": "openai.types.model.Model",
|
||||
"__data__": {
|
||||
"id": "all-minilm:l6-v2",
|
||||
"created": 1753936935,
|
||||
"object": "model",
|
||||
"owned_by": "library"
|
||||
}
|
||||
},
|
||||
{
|
||||
"__type__": "openai.types.model.Model",
|
||||
"__data__": {
|
||||
"id": "llama3.2:3b-instruct-fp16",
|
||||
"created": 1753936925,
|
||||
"object": "model",
|
||||
"owned_by": "library"
|
||||
}
|
||||
}
|
||||
],
|
||||
"is_streaming": false
|
||||
}
|
||||
}
|
|
@ -327,6 +327,132 @@ async def test_create_openai_response_with_tool_call_type_none(openai_responses_
|
|||
assert chunks[5].response.output[0].name == "get_weather"
|
||||
|
||||
|
||||
async def test_create_openai_response_with_tool_call_function_arguments_none(openai_responses_impl, mock_inference_api):
|
||||
"""Test creating an OpenAI response with a tool call response that has a function that does not accept arguments, or arguments set to None when they are not mandatory."""
|
||||
# Setup
|
||||
input_text = "What is the time right now?"
|
||||
model = "meta-llama/Llama-3.1-8B-Instruct"
|
||||
|
||||
async def fake_stream_toolcall():
|
||||
yield ChatCompletionChunk(
|
||||
id="123",
|
||||
choices=[
|
||||
Choice(
|
||||
index=0,
|
||||
delta=ChoiceDelta(
|
||||
tool_calls=[
|
||||
ChoiceDeltaToolCall(
|
||||
index=0,
|
||||
id="tc_123",
|
||||
function=ChoiceDeltaToolCallFunction(name="get_current_time", arguments=None),
|
||||
type=None,
|
||||
)
|
||||
]
|
||||
),
|
||||
),
|
||||
],
|
||||
created=1,
|
||||
model=model,
|
||||
object="chat.completion.chunk",
|
||||
)
|
||||
|
||||
mock_inference_api.openai_chat_completion.return_value = fake_stream_toolcall()
|
||||
|
||||
# Function does not accept arguments
|
||||
result = await openai_responses_impl.create_openai_response(
|
||||
input=input_text,
|
||||
model=model,
|
||||
stream=True,
|
||||
temperature=0.1,
|
||||
tools=[
|
||||
OpenAIResponseInputToolFunction(
|
||||
name="get_current_time",
|
||||
description="Get current time for system's timezone",
|
||||
parameters={},
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
# Check that we got the content from our mocked tool execution result
|
||||
chunks = [chunk async for chunk in result]
|
||||
|
||||
# Verify event types
|
||||
# Should have: response.created, output_item.added, function_call_arguments.delta,
|
||||
# function_call_arguments.done, output_item.done, response.completed
|
||||
assert len(chunks) == 5
|
||||
|
||||
# Verify inference API was called correctly (after iterating over result)
|
||||
first_call = mock_inference_api.openai_chat_completion.call_args_list[0]
|
||||
assert first_call.kwargs["messages"][0].content == input_text
|
||||
assert first_call.kwargs["tools"] is not None
|
||||
assert first_call.kwargs["temperature"] == 0.1
|
||||
|
||||
# Check response.created event (should have empty output)
|
||||
assert chunks[0].type == "response.created"
|
||||
assert len(chunks[0].response.output) == 0
|
||||
|
||||
# Check streaming events
|
||||
assert chunks[1].type == "response.output_item.added"
|
||||
assert chunks[2].type == "response.function_call_arguments.done"
|
||||
assert chunks[3].type == "response.output_item.done"
|
||||
|
||||
# Check response.completed event (should have the tool call with arguments set to "{}")
|
||||
assert chunks[4].type == "response.completed"
|
||||
assert len(chunks[4].response.output) == 1
|
||||
assert chunks[4].response.output[0].type == "function_call"
|
||||
assert chunks[4].response.output[0].name == "get_current_time"
|
||||
assert chunks[4].response.output[0].arguments == "{}"
|
||||
|
||||
mock_inference_api.openai_chat_completion.return_value = fake_stream_toolcall()
|
||||
|
||||
# Function accepts optional arguments
|
||||
result = await openai_responses_impl.create_openai_response(
|
||||
input=input_text,
|
||||
model=model,
|
||||
stream=True,
|
||||
temperature=0.1,
|
||||
tools=[
|
||||
OpenAIResponseInputToolFunction(
|
||||
name="get_current_time",
|
||||
description="Get current time for system's timezone",
|
||||
parameters={
|
||||
"timezone": "string",
|
||||
},
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
# Check that we got the content from our mocked tool execution result
|
||||
chunks = [chunk async for chunk in result]
|
||||
|
||||
# Verify event types
|
||||
# Should have: response.created, output_item.added, function_call_arguments.delta,
|
||||
# function_call_arguments.done, output_item.done, response.completed
|
||||
assert len(chunks) == 5
|
||||
|
||||
# Verify inference API was called correctly (after iterating over result)
|
||||
first_call = mock_inference_api.openai_chat_completion.call_args_list[0]
|
||||
assert first_call.kwargs["messages"][0].content == input_text
|
||||
assert first_call.kwargs["tools"] is not None
|
||||
assert first_call.kwargs["temperature"] == 0.1
|
||||
|
||||
# Check response.created event (should have empty output)
|
||||
assert chunks[0].type == "response.created"
|
||||
assert len(chunks[0].response.output) == 0
|
||||
|
||||
# Check streaming events
|
||||
assert chunks[1].type == "response.output_item.added"
|
||||
assert chunks[2].type == "response.function_call_arguments.done"
|
||||
assert chunks[3].type == "response.output_item.done"
|
||||
|
||||
# Check response.completed event (should have the tool call with arguments set to "{}")
|
||||
assert chunks[4].type == "response.completed"
|
||||
assert len(chunks[4].response.output) == 1
|
||||
assert chunks[4].response.output[0].type == "function_call"
|
||||
assert chunks[4].response.output[0].name == "get_current_time"
|
||||
assert chunks[4].response.output[0].arguments == "{}"
|
||||
|
||||
|
||||
async def test_create_openai_response_with_multiple_messages(openai_responses_impl, mock_inference_api):
|
||||
"""Test creating an OpenAI response with multiple messages."""
|
||||
# Setup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue