Files
ai-agent-book/chapter2/local_llm_serving/runs/exp2-1-qwen3-0.6b-20260730-v2/evidence.json
T
liqiang b119135836
Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
ai-agent-book 精选快照(<2MB 代码与文档,来自 github.com/bojieli/ai-agent-book)
2026-08-20 13:12:50 +00:00

4365 lines
324 KiB
JSON

{
"experiment_id": "2-1",
"started_at": "2026-07-29T18:11:26.012163+00:00",
"protocol_sha256": "829b8c2d19926af25ca5dd3271065a33b26460191aa0ccb15bb4fdfdbf1dc12a",
"provider": "local Ollama",
"endpoint": "http://localhost:11434",
"model": "qwen3:0.6b",
"tokenizer": "Qwen/Qwen3-0.6B",
"host": {
"platform": "macOS-26.3-arm64-arm-64bit",
"machine": "arm64",
"processor": "arm",
"python": "3.11.4"
},
"server": {
"version": {
"version": "0.20.7"
},
"tag": {
"name": "qwen3:0.6b",
"model": "qwen3:0.6b",
"modified_at": "2026-07-18T00:13:15.526630683+08:00",
"size": 522653767,
"digest": "7df6b6e09427a769808717c0a93cadc4ae99ed4eb8bf5ca557c90846becea435",
"details": {
"parent_model": "",
"format": "gguf",
"family": "qwen3",
"families": [
"qwen3"
],
"parameter_size": "751.63M",
"quantization_level": "Q4_K_M"
}
},
"show": {
"modified_at": "2026-07-18T00:13:15.526630683+08:00",
"details": {
"parent_model": "",
"format": "gguf",
"family": "qwen3",
"families": [
"qwen3"
],
"parameter_size": "751.63M",
"quantization_level": "Q4_K_M"
},
"model_info": {
"general.architecture": "qwen3",
"general.basename": "Qwen3",
"general.file_type": 15,
"general.license": "apache-2.0",
"general.parameter_count": 751632384,
"general.quantization_version": 2,
"general.size_label": "0.6B",
"general.type": "model",
"qwen3.attention.head_count": 16,
"qwen3.attention.head_count_kv": 8,
"qwen3.attention.key_length": 128,
"qwen3.attention.layer_norm_rms_epsilon": 1e-06,
"qwen3.attention.value_length": 128,
"qwen3.block_count": 28,
"qwen3.context_length": 40960,
"qwen3.embedding_length": 1024,
"qwen3.feed_forward_length": 3072,
"qwen3.rope.freq_base": 1000000,
"tokenizer.ggml.add_bos_token": false,
"tokenizer.ggml.bos_token_id": 151643,
"tokenizer.ggml.eos_token_id": 151645,
"tokenizer.ggml.merges": null,
"tokenizer.ggml.model": "gpt2",
"tokenizer.ggml.padding_token_id": 151643,
"tokenizer.ggml.pre": "qwen2",
"tokenizer.ggml.token_type": null,
"tokenizer.ggml.tokens": null
}
}
},
"tool_case": {
"messages": [
{
"role": "system",
"content": "You are a helpful assistant. Use tools for current facts. When asking for Vancouver time, pass the IANA timezone America/Vancouver; do not substitute another city's timezone."
},
{
"role": "user",
"content": "What are the current time and weather in Vancouver? Call both tools."
},
{
"role": "assistant",
"content": "<tool_call>\n{\"name\": \"get_current_time\", \"arguments\": {\"timezone\": \"America/Vancouver\"}}\n</tool_call>\n<tool_call>\n{\"name\": \"get_current_temperature\", \"arguments\": {\"location\": \"Vancouver\", \"unit\": \"celsius\"}}\n</tool_call>"
},
{
"role": "tool",
"content": "{\"timezone\": \"America/Vancouver\", \"datetime\": \"2026-07-29 11:11:28\", \"date\": \"2026-07-29\", \"time\": \"11:11:28\", \"day_of_week\": \"Wednesday\", \"utc_offset\": \"-0700\", \"timestamp\": \"2026-07-29T11:11:28.474375-07:00\"}"
},
{
"role": "tool",
"content": "{\"location\": \"Vancouver, Canada\", \"temperature\": 17.9, \"unit\": \"\\u00b0C\", \"conditions\": \"mainly clear\", \"humidity\": 76, \"wind_speed\": 3.8, \"wind_unit\": \"km/h\", \"coordinates\": {\"latitude\": 49.24966, \"longitude\": -123.11934}, \"timestamp\": \"2026-07-29T11:00\", \"source\": \"Open-Meteo\"}"
}
],
"tools": [
{
"type": "function",
"function": {
"name": "get_current_temperature",
"description": "Get the current temperature for a specific location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and country, e.g., 'Paris, France'"
},
"unit": {
"type": "string",
"enum": [
"celsius",
"fahrenheit"
],
"description": "The temperature unit to use (by default, celsius)"
}
},
"required": [
"location",
"unit"
]
}
}
},
{
"type": "function",
"function": {
"name": "get_current_time",
"description": "Get the current date and time in a specific timezone",
"parameters": {
"type": "object",
"properties": {
"timezone": {
"type": "string",
"description": "Timezone name (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo'). Use standard IANA timezone names.",
"default": "UTC"
}
},
"required": []
}
}
}
],
"first_turn": {
"requested_at": "2026-07-29T18:11:26.053135+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nYou are a helpful assistant. Use tools for current facts. When asking for Vancouver time, pass the IANA timezone America/Vancouver; do not substitute another city's timezone.\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_temperature\", \"description\": \"Get the current temperature for a specific location\", \"parameters\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\", \"description\": \"The city and country, e.g., 'Paris, France'\"}, \"unit\": {\"type\": \"string\", \"enum\": [\"celsius\", \"fahrenheit\"], \"description\": \"The temperature unit to use (by default, celsius)\"}}, \"required\": [\"location\", \"unit\"]}}}\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_time\", \"description\": \"Get the current date and time in a specific timezone\", \"parameters\": {\"type\": \"object\", \"properties\": {\"timezone\": {\"type\": \"string\", \"description\": \"Timezone name (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo'). Use standard IANA timezone names.\", \"default\": \"UTC\"}}, \"required\": []}}}\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n<|im_start|>user\nWhat are the current time and weather in Vancouver? Call both tools.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 512,
"seed": 21
}
},
"request_prompt_sha256": "f7b79c3d1fc8cfd1ab8138698a030d6c9dbdacee2df8077d85ec4d92b14baec5",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.233059Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.238071Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.242495Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.24727Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.251823Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.256253Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.261174Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.265655Z",
"response": "",
"thinking": " asking",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.270234Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.274767Z",
"response": "",
"thinking": " both",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.279317Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.283747Z",
"response": "",
"thinking": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.288182Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.292598Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.297224Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.302168Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.307204Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.311816Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.316304Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.320803Z",
"response": "",
"thinking": " Let",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.325294Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.329766Z",
"response": "",
"thinking": " break",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.334196Z",
"response": "",
"thinking": " this",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.338666Z",
"response": "",
"thinking": " down",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.343475Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.348184Z",
"response": "",
"thinking": " First",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.352666Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.357072Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.361725Z",
"response": "",
"thinking": " need",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.366417Z",
"response": "",
"thinking": " to",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.371975Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.376368Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.381123Z",
"response": "",
"thinking": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.385671Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.390525Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.39694Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.403186Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.409717Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.416822Z",
"response": "",
"thinking": " available",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.42421Z",
"response": "",
"thinking": " tool",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.431253Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.438367Z",
"response": "",
"thinking": " that",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.445842Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.45347Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.461349Z",
"response": "",
"thinking": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.469335Z",
"response": "",
"thinking": "_time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.479534Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.485413Z",
"response": "",
"thinking": " which",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.491915Z",
"response": "",
"thinking": " requires",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.498839Z",
"response": "",
"thinking": " a",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.506162Z",
"response": "",
"thinking": " timezone",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.513372Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.521353Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.529913Z",
"response": "",
"thinking": " default",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.538676Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.54824Z",
"response": "",
"thinking": " UTC",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.556438Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.565168Z",
"response": "",
"thinking": " but",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.571499Z",
"response": "",
"thinking": " since",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.580442Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.590117Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.599068Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.608883Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.615923Z",
"response": "",
"thinking": " Americas",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.622496Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.629259Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.636078Z",
"response": "",
"thinking": " should",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.64351Z",
"response": "",
"thinking": " use",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.65178Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.65959Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.667148Z",
"response": "",
"thinking": "ANA",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.675139Z",
"response": "",
"thinking": " timezone",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.683221Z",
"response": "",
"thinking": " America",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.692026Z",
"response": "",
"thinking": "/V",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.701273Z",
"response": "",
"thinking": "ancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.710848Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.717651Z",
"response": "",
"thinking": " So",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.725585Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.732287Z",
"response": "",
"thinking": "'ll",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.738705Z",
"response": "",
"thinking": " call",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.746464Z",
"response": "",
"thinking": " that",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.7577Z",
"response": "",
"thinking": " function",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.764734Z",
"response": "",
"thinking": " with",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.771084Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.779171Z",
"response": "",
"thinking": " correct",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.787822Z",
"response": "",
"thinking": " timezone",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.79613Z",
"response": "",
"thinking": ".\n\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.804254Z",
"response": "",
"thinking": "Next",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.815043Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.822522Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.83216Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.841022Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.85148Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.860859Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.870384Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.881508Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.890014Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.899838Z",
"response": "",
"thinking": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.910528Z",
"response": "",
"thinking": " temperature",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.921627Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.932062Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.941919Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.952713Z",
"response": "",
"thinking": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.96376Z",
"response": "",
"thinking": "_temperature",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.975966Z",
"response": "",
"thinking": " function",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:26.988942Z",
"response": "",
"thinking": " needs",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.001041Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.014402Z",
"response": "",
"thinking": " location",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.027922Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.040552Z",
"response": "",
"thinking": " unit",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.053422Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.066972Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.081818Z",
"response": "",
"thinking": " location",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.094884Z",
"response": "",
"thinking": " here",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.109264Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.123799Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.137251Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.151887Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.166054Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.181767Z",
"response": "",
"thinking": " unit",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.194983Z",
"response": "",
"thinking": " can",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.210257Z",
"response": "",
"thinking": " be",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.224585Z",
"response": "",
"thinking": " specified",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.237392Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.250291Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.263123Z",
"response": "",
"thinking": " default",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.276526Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.291769Z",
"response": "",
"thinking": " Celsius",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.307274Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.32245Z",
"response": "",
"thinking": " so",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.336501Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.349256Z",
"response": "",
"thinking": "'ll",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.36198Z",
"response": "",
"thinking": " leave",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.377194Z",
"response": "",
"thinking": " that",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.393368Z",
"response": "",
"thinking": " as",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.407541Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.421333Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.435554Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.448676Z",
"response": "",
"thinking": " need",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.460883Z",
"response": "",
"thinking": " to",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.474997Z",
"response": "",
"thinking": " make",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.490542Z",
"response": "",
"thinking": " sure",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.505361Z",
"response": "",
"thinking": " both",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.518317Z",
"response": "",
"thinking": " tools",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.532092Z",
"response": "",
"thinking": " are",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.546574Z",
"response": "",
"thinking": " called",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.563026Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.577227Z",
"response": "",
"thinking": " so",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.591169Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.604771Z",
"response": "",
"thinking": "'ll",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.618415Z",
"response": "",
"thinking": " structure",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.641304Z",
"response": "",
"thinking": " each",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.65385Z",
"response": "",
"thinking": " tool",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.668281Z",
"response": "",
"thinking": " call",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.681309Z",
"response": "",
"thinking": " separately",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.696735Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.709215Z",
"response": "",
"thinking": " XML",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.72186Z",
"response": "",
"thinking": " tags",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.734364Z",
"response": "",
"thinking": ".\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.746304Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.758567Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.771821Z",
"response": "<tool_call>",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.782812Z",
"response": "\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.794722Z",
"response": "{\"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.806693Z",
"response": "name",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.82154Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.836468Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.851887Z",
"response": "get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.864852Z",
"response": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.878199Z",
"response": "_time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.891496Z",
"response": "\",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.906805Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.921084Z",
"response": "arguments",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.935626Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.950257Z",
"response": " {\"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.963426Z",
"response": "timezone",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.979212Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:27.992151Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.006573Z",
"response": "America",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.018826Z",
"response": "/V",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.031585Z",
"response": "ancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.044198Z",
"response": "\"}}\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.061551Z",
"response": "</tool_call>",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.072389Z",
"response": "\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.088233Z",
"response": "<tool_call>",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.101646Z",
"response": "\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.115716Z",
"response": "{\"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.130723Z",
"response": "name",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.145709Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.161013Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.174539Z",
"response": "get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.189555Z",
"response": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.204256Z",
"response": "_temperature",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.217933Z",
"response": "\",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.231831Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.2458Z",
"response": "arguments",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.261119Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.275469Z",
"response": " {\"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.289627Z",
"response": "location",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.301928Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.314381Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.326574Z",
"response": "V",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.340197Z",
"response": "ancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.352801Z",
"response": "\",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.364802Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.377614Z",
"response": "unit",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.393592Z",
"response": "\":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.408433Z",
"response": " \"",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.421127Z",
"response": "c",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.435942Z",
"response": "elsius",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.450924Z",
"response": "\"}}\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.46296Z",
"response": "</tool_call>",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.470907Z",
"response": "",
"done": true,
"done_reason": "stop",
"total_duration": 2415877459,
"load_duration": 95300959,
"prompt_eval_count": 358,
"prompt_eval_duration": 81555708,
"eval_count": 213,
"eval_duration": 2080996369
}
],
"raw_response": "<tool_call>\n{\"name\": \"get_current_time\", \"arguments\": {\"timezone\": \"America/Vancouver\"}}\n</tool_call>\n<tool_call>\n{\"name\": \"get_current_temperature\", \"arguments\": {\"location\": \"Vancouver\", \"unit\": \"celsius\"}}\n</tool_call>",
"response_sha256": "0600deb12b19efb45811dd06f7655a0ab6d5b936636920de7d88961c46069d63",
"ttft_s": 1.7188322502188385,
"wall_s": 2.4181035002693534,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:28.470907Z",
"done": true,
"done_reason": "stop",
"total_duration": 2415877459,
"load_duration": 95300959,
"prompt_eval_count": 358,
"prompt_eval_duration": 81555708,
"eval_count": 213,
"eval_duration": 2080996369
},
"decode_tokens_per_second": 102.35481578584147
},
"parsed_tool_calls": [
{
"name": "get_current_time",
"arguments": {
"timezone": "America/Vancouver"
}
},
{
"name": "get_current_temperature",
"arguments": {
"location": "Vancouver",
"unit": "celsius"
}
}
],
"normalized_tool_calls": [
{
"name": "get_current_time",
"arguments": {
"timezone": "America/Vancouver"
}
},
{
"name": "get_current_temperature",
"arguments": {
"location": "Vancouver",
"unit": "celsius"
}
}
],
"parallel_execution": {
"started_at": "2026-07-29T18:11:28.471444+00:00",
"execution": "ThreadPoolExecutor",
"wall_s": 4.753103165887296,
"results": [
{
"index": 0,
"call": {
"name": "get_current_time",
"arguments": {
"timezone": "America/Vancouver"
}
},
"result": "{\"timezone\": \"America/Vancouver\", \"datetime\": \"2026-07-29 11:11:28\", \"date\": \"2026-07-29\", \"time\": \"11:11:28\", \"day_of_week\": \"Wednesday\", \"utc_offset\": \"-0700\", \"timestamp\": \"2026-07-29T11:11:28.474375-07:00\"}",
"duration_s": 0.0022050831466913223
},
{
"index": 1,
"call": {
"name": "get_current_temperature",
"arguments": {
"location": "Vancouver",
"unit": "celsius"
}
},
"result": "{\"location\": \"Vancouver, Canada\", \"temperature\": 17.9, \"unit\": \"\\u00b0C\", \"conditions\": \"mainly clear\", \"humidity\": 76, \"wind_speed\": 3.8, \"wind_unit\": \"km/h\", \"coordinates\": {\"latitude\": 49.24966, \"longitude\": -123.11934}, \"timestamp\": \"2026-07-29T11:00\", \"source\": \"Open-Meteo\"}",
"duration_s": 4.7517297910526395
}
]
},
"second_rendered_prompt": "<|im_start|>system\nYou are a helpful assistant. Use tools for current facts. When asking for Vancouver time, pass the IANA timezone America/Vancouver; do not substitute another city's timezone.\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_temperature\", \"description\": \"Get the current temperature for a specific location\", \"parameters\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\", \"description\": \"The city and country, e.g., 'Paris, France'\"}, \"unit\": {\"type\": \"string\", \"enum\": [\"celsius\", \"fahrenheit\"], \"description\": \"The temperature unit to use (by default, celsius)\"}}, \"required\": [\"location\", \"unit\"]}}}\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_time\", \"description\": \"Get the current date and time in a specific timezone\", \"parameters\": {\"type\": \"object\", \"properties\": {\"timezone\": {\"type\": \"string\", \"description\": \"Timezone name (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo'). Use standard IANA timezone names.\", \"default\": \"UTC\"}}, \"required\": []}}}\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n<|im_start|>user\nWhat are the current time and weather in Vancouver? Call both tools.<|im_end|>\n<|im_start|>assistant\n<tool_call>\n{\"name\": \"get_current_time\", \"arguments\": {\"timezone\": \"America/Vancouver\"}}\n</tool_call>\n<tool_call>\n{\"name\": \"get_current_temperature\", \"arguments\": {\"location\": \"Vancouver\", \"unit\": \"celsius\"}}\n</tool_call><|im_end|>\n<|im_start|>user\n<tool_response>\n{\"timezone\": \"America/Vancouver\", \"datetime\": \"2026-07-29 11:11:28\", \"date\": \"2026-07-29\", \"time\": \"11:11:28\", \"day_of_week\": \"Wednesday\", \"utc_offset\": \"-0700\", \"timestamp\": \"2026-07-29T11:11:28.474375-07:00\"}\n</tool_response>\n<tool_response>\n{\"location\": \"Vancouver, Canada\", \"temperature\": 17.9, \"unit\": \"\\u00b0C\", \"conditions\": \"mainly clear\", \"humidity\": 76, \"wind_speed\": 3.8, \"wind_unit\": \"km/h\", \"coordinates\": {\"latitude\": 49.24966, \"longitude\": -123.11934}, \"timestamp\": \"2026-07-29T11:00\", \"source\": \"Open-Meteo\"}\n</tool_response><|im_end|>\n<|im_start|>assistant\n",
"second_turn": {
"requested_at": "2026-07-29T18:11:33.225087+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nYou are a helpful assistant. Use tools for current facts. When asking for Vancouver time, pass the IANA timezone America/Vancouver; do not substitute another city's timezone.\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_temperature\", \"description\": \"Get the current temperature for a specific location\", \"parameters\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\", \"description\": \"The city and country, e.g., 'Paris, France'\"}, \"unit\": {\"type\": \"string\", \"enum\": [\"celsius\", \"fahrenheit\"], \"description\": \"The temperature unit to use (by default, celsius)\"}}, \"required\": [\"location\", \"unit\"]}}}\n{\"type\": \"function\", \"function\": {\"name\": \"get_current_time\", \"description\": \"Get the current date and time in a specific timezone\", \"parameters\": {\"type\": \"object\", \"properties\": {\"timezone\": {\"type\": \"string\", \"description\": \"Timezone name (e.g., 'America/New_York', 'Europe/London', 'Asia/Tokyo'). Use standard IANA timezone names.\", \"default\": \"UTC\"}}, \"required\": []}}}\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n<|im_start|>user\nWhat are the current time and weather in Vancouver? Call both tools.<|im_end|>\n<|im_start|>assistant\n<tool_call>\n{\"name\": \"get_current_time\", \"arguments\": {\"timezone\": \"America/Vancouver\"}}\n</tool_call>\n<tool_call>\n{\"name\": \"get_current_temperature\", \"arguments\": {\"location\": \"Vancouver\", \"unit\": \"celsius\"}}\n</tool_call><|im_end|>\n<|im_start|>user\n<tool_response>\n{\"timezone\": \"America/Vancouver\", \"datetime\": \"2026-07-29 11:11:28\", \"date\": \"2026-07-29\", \"time\": \"11:11:28\", \"day_of_week\": \"Wednesday\", \"utc_offset\": \"-0700\", \"timestamp\": \"2026-07-29T11:11:28.474375-07:00\"}\n</tool_response>\n<tool_response>\n{\"location\": \"Vancouver, Canada\", \"temperature\": 17.9, \"unit\": \"\\u00b0C\", \"conditions\": \"mainly clear\", \"humidity\": 76, \"wind_speed\": 3.8, \"wind_unit\": \"km/h\", \"coordinates\": {\"latitude\": 49.24966, \"longitude\": -123.11934}, \"timestamp\": \"2026-07-29T11:00\", \"source\": \"Open-Meteo\"}\n</tool_response><|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 512,
"seed": 21
}
},
"request_prompt_sha256": "5afe216cd34724767b79708d8b6a76a23fbd44fa1ebbbee574b730f3aa23f0c5",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.40185Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.406671Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.411196Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.415777Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.420294Z",
"response": "",
"thinking": " let",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.424783Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.429335Z",
"response": "",
"thinking": " process",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.433871Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.438391Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.442824Z",
"response": "",
"thinking": "'s",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.447364Z",
"response": "",
"thinking": " request",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.451892Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.45652Z",
"response": "",
"thinking": " They",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.461923Z",
"response": "",
"thinking": " asked",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.466784Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.471325Z",
"response": "",
"thinking": " both",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.47603Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.480503Z",
"response": "",
"thinking": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.484928Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.489378Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.493798Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.498273Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.502778Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.507223Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.511793Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.516363Z",
"response": "",
"thinking": " need",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.521679Z",
"response": "",
"thinking": " to",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.526255Z",
"response": "",
"thinking": " call",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.530773Z",
"response": "",
"thinking": " both",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.535319Z",
"response": "",
"thinking": " functions",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.540584Z",
"response": "",
"thinking": ".\n\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.547369Z",
"response": "",
"thinking": "First",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.554752Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.561927Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.568142Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.574087Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.580594Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.587266Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.593794Z",
"response": "",
"thinking": " should",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.600628Z",
"response": "",
"thinking": " use",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.609632Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.620105Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.627275Z",
"response": "",
"thinking": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.635174Z",
"response": "",
"thinking": "_time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.643119Z",
"response": "",
"thinking": " function",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.651323Z",
"response": "",
"thinking": " with",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.659534Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.667622Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.675578Z",
"response": "",
"thinking": "ANA",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.682454Z",
"response": "",
"thinking": " timezone",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.689941Z",
"response": "",
"thinking": " America",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.697252Z",
"response": "",
"thinking": "/V",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.704048Z",
"response": "",
"thinking": "ancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.711904Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.721527Z",
"response": "",
"thinking": " The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.72852Z",
"response": "",
"thinking": " default",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.739966Z",
"response": "",
"thinking": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.74718Z",
"response": "",
"thinking": " set",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.754825Z",
"response": "",
"thinking": " to",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.761938Z",
"response": "",
"thinking": " UTC",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.768363Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.774859Z",
"response": "",
"thinking": " so",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.781771Z",
"response": "",
"thinking": " that",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.78821Z",
"response": "",
"thinking": "'s",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.79427Z",
"response": "",
"thinking": " correct",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.800351Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.806845Z",
"response": "",
"thinking": " Then",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.815398Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.822801Z",
"response": "",
"thinking": " for",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.832474Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.845498Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.851792Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.860052Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.868731Z",
"response": "",
"thinking": "'ll",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.875922Z",
"response": "",
"thinking": " use",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.883225Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.890172Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.897807Z",
"response": "",
"thinking": "_current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.907733Z",
"response": "",
"thinking": "_temperature",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.914922Z",
"response": "",
"thinking": " function",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.921882Z",
"response": "",
"thinking": " with",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.929943Z",
"response": "",
"thinking": " location",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.937832Z",
"response": "",
"thinking": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.945243Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.957343Z",
"response": "",
"thinking": " unit",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.961883Z",
"response": "",
"thinking": " c",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.969007Z",
"response": "",
"thinking": "elsius",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.976189Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.984785Z",
"response": "",
"thinking": " \n\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:33.990957Z",
"response": "",
"thinking": "Wait",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.001918Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.008598Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.016106Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.025699Z",
"response": "",
"thinking": " didn",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.036037Z",
"response": "",
"thinking": "'t",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.044392Z",
"response": "",
"thinking": " specify",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.055263Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.063736Z",
"response": "",
"thinking": " unit",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.072363Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.088542Z",
"response": "",
"thinking": " but",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.095276Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.105572Z",
"response": "",
"thinking": " example",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.118679Z",
"response": "",
"thinking": " response",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.130409Z",
"response": "",
"thinking": " uses",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.142258Z",
"response": "",
"thinking": " c",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.157147Z",
"response": "",
"thinking": "elsius",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.169714Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.182279Z",
"response": "",
"thinking": " so",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.195994Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.210511Z",
"response": "",
"thinking": "'ll",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.22582Z",
"response": "",
"thinking": " stick",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.241001Z",
"response": "",
"thinking": " with",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.256786Z",
"response": "",
"thinking": " that",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.270632Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.288231Z",
"response": "",
"thinking": " Once",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.29898Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.312952Z",
"response": "",
"thinking": " get",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.328866Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.342857Z",
"response": "",
"thinking": " data",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.357452Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.370404Z",
"response": "",
"thinking": " I",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.382943Z",
"response": "",
"thinking": " can",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.395692Z",
"response": "",
"thinking": " present",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.407791Z",
"response": "",
"thinking": " both",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.420448Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.431425Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.438893Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.446946Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.454901Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.463438Z",
"response": "",
"thinking": " details",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.476412Z",
"response": "",
"thinking": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.484313Z",
"response": "",
"thinking": " a",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.492302Z",
"response": "",
"thinking": " clear",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.500683Z",
"response": "",
"thinking": " way",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.508492Z",
"response": "",
"thinking": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.516434Z",
"response": "",
"thinking": " Make",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.524599Z",
"response": "",
"thinking": " sure",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.535741Z",
"response": "",
"thinking": " to",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.544678Z",
"response": "",
"thinking": " format",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.554837Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.564261Z",
"response": "",
"thinking": " response",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.572968Z",
"response": "",
"thinking": " so",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.582224Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.590754Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.601878Z",
"response": "",
"thinking": " understands",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.613495Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.623298Z",
"response": "",
"thinking": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.635318Z",
"response": "",
"thinking": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.646004Z",
"response": "",
"thinking": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.656604Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.670037Z",
"response": "",
"thinking": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.683979Z",
"response": "",
"thinking": " conditions",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.694136Z",
"response": "",
"thinking": ".\n",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.707944Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.719982Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.732008Z",
"response": "The",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.746386Z",
"response": " current",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.760236Z",
"response": " time",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.773025Z",
"response": " in",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.786177Z",
"response": " Vancouver",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.799261Z",
"response": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.815864Z",
"response": " **",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.829496Z",
"response": "1",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.843238Z",
"response": "1",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.85591Z",
"response": ":",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.871594Z",
"response": "1",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.886292Z",
"response": "1",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.898882Z",
"response": "**",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.911258Z",
"response": " (",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.923401Z",
"response": "UTC",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.937212Z",
"response": "-",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.950638Z",
"response": "7",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.96492Z",
"response": "),",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.979779Z",
"response": " and",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:34.993902Z",
"response": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.00998Z",
"response": " weather",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.024363Z",
"response": " is",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.040835Z",
"response": " **",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.054834Z",
"response": "main",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.068141Z",
"response": "ly",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.083364Z",
"response": " clear",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.097236Z",
"response": "**",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.111756Z",
"response": " with",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.12552Z",
"response": " a",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.138953Z",
"response": " temperature",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.153678Z",
"response": " of",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.165838Z",
"response": " **",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.180018Z",
"response": "1",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.193274Z",
"response": "7",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.207288Z",
"response": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.223066Z",
"response": "9",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.23696Z",
"response": "°C",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.251363Z",
"response": "**",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.26626Z",
"response": ".",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.281292Z",
"response": "",
"done": true,
"done_reason": "stop",
"total_duration": 2054144000,
"load_duration": 92797958,
"prompt_eval_count": 662,
"prompt_eval_duration": 79876750,
"eval_count": 195,
"eval_duration": 1755394416
}
],
"raw_response": "The current time in Vancouver is **11:11** (UTC-7), and the weather is **mainly clear** with a temperature of **17.9°C**.",
"response_sha256": "228578bc07c40b61fc3800234ab439be0472851b67a0e018f730b6ce08ecf1f6",
"ttft_s": 1.5069754999130964,
"wall_s": 2.056406707968563,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:35.281292Z",
"done": true,
"done_reason": "stop",
"total_duration": 2054144000,
"load_duration": 92797958,
"prompt_eval_count": 662,
"prompt_eval_duration": 79876750,
"eval_count": 195,
"eval_duration": 1755394416
},
"decode_tokens_per_second": 111.08614578160991
},
"second_turn_tool_calls": [],
"gates": {
"chat_template_special_tokens_visible": true,
"raw_tool_tags_visible": true,
"exact_required_tools": true,
"tool_arguments_match_vancouver": true,
"parallel_tool_results_valid": true,
"terminated_after_results": true
},
"passed": true
},
"cache_case": {
"stable_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"stable_prompt_character_count": 16499,
"warmups": [
{
"requested_at": "2026-07-29T18:11:35.281685+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.072436Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.079066Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.08628Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.092904Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.099242Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.105929Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.112461Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.119991Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.120022Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 836810583,
"load_duration": 89665417,
"prompt_eval_count": 2753,
"prompt_eval_duration": 696333333,
"eval_count": 8,
"eval_duration": 45496875
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 0.8384593329392374,
"wall_s": 0.8384593329392374,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.120022Z",
"done": true,
"done_reason": "length",
"total_duration": 836810583,
"load_duration": 89665417,
"prompt_eval_count": 2753,
"prompt_eval_duration": 696333333,
"eval_count": 8,
"eval_duration": 45496875
},
"decode_tokens_per_second": 175.83625248986883
},
{
"requested_at": "2026-07-29T18:11:36.120197+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.20676Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.213419Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.219993Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.226416Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.233243Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.239542Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.246539Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.253025Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.253056Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 131728542,
"load_duration": 74131917,
"prompt_eval_count": 2753,
"prompt_eval_duration": 7428791,
"eval_count": 8,
"eval_duration": 44348625
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 0.13295891601592302,
"wall_s": 0.13295891601592302,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.253056Z",
"done": true,
"done_reason": "length",
"total_duration": 131728542,
"load_duration": 74131917,
"prompt_eval_count": 2753,
"prompt_eval_duration": 7428791,
"eval_count": 8,
"eval_duration": 44348625
},
"decode_tokens_per_second": 180.38890720963727
}
],
"pairs": [
{
"pair": 1,
"hit": {
"requested_at": "2026-07-29T18:11:36.253206+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.341445Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.348096Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.355092Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.362143Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.369211Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.375626Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.382498Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.389487Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.389506Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 134969833,
"load_duration": 76571833,
"prompt_eval_count": 2753,
"prompt_eval_duration": 7201750,
"eval_count": 8,
"eval_duration": 45746333
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 0.1363926245830953,
"wall_s": 0.1363926245830953,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:36.389506Z",
"done": true,
"done_reason": "length",
"total_duration": 134969833,
"load_duration": 76571833,
"prompt_eval_count": 2753,
"prompt_eval_duration": 7201750,
"eval_count": 8,
"eval_duration": 45746333
},
"decode_tokens_per_second": 174.87740492773486
},
"miss": {
"requested_at": "2026-07-29T18:11:36.389749+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nM0000000 operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "b138a5c725a536f39edbf93890b44e92f46747a94db8a106a2cfed0e79fe790f",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.232546Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.240383Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.247628Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.255025Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.262434Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.270099Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.277423Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.284345Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.284388Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 893410167,
"load_duration": 72916792,
"prompt_eval_count": 2759,
"prompt_eval_duration": 765625833,
"eval_count": 8,
"eval_duration": 49784291
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 0.8947271667420864,
"wall_s": 0.8947271667420864,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:37.284388Z",
"done": true,
"done_reason": "length",
"total_duration": 893410167,
"load_duration": 72916792,
"prompt_eval_count": 2759,
"prompt_eval_duration": 765625833,
"eval_count": 8,
"eval_duration": 49784291
},
"decode_tokens_per_second": 160.69325964690347
},
"prompt_character_lengths_equal": true
},
{
"pair": 2,
"hit": {
"requested_at": "2026-07-29T18:11:37.284528+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.321262Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.331079Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.340346Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.350362Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.359599Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.368751Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.378412Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.387721Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.387725Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1101855750,
"load_duration": 79930542,
"prompt_eval_count": 2753,
"prompt_eval_duration": 952165333,
"eval_count": 8,
"eval_duration": 64153292
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.1033918326720595,
"wall_s": 1.1033918326720595,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:38.387725Z",
"done": true,
"done_reason": "length",
"total_duration": 1101855750,
"load_duration": 79930542,
"prompt_eval_count": 2753,
"prompt_eval_duration": 952165333,
"eval_count": 8,
"eval_duration": 64153292
},
"decode_tokens_per_second": 124.70131696437339
},
"miss": {
"requested_at": "2026-07-29T18:11:38.388249+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nM0000001 operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "719edff327b0896db70428ca64758208eccdf23b2a9a7067d101551938f1950a",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:39.949583Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:39.96366Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:39.977573Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:39.991829Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.006481Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.020697Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.033246Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.046495Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.04656Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1656371750,
"load_duration": 88456000,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1467306042,
"eval_count": 8,
"eval_duration": 93985752
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.6584319579415023,
"wall_s": 1.6584319579415023,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:40.04656Z",
"done": true,
"done_reason": "length",
"total_duration": 1656371750,
"load_duration": 88456000,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1467306042,
"eval_count": 8,
"eval_duration": 93985752
},
"decode_tokens_per_second": 85.11928488905424
},
"prompt_character_lengths_equal": true
},
{
"pair": 3,
"hit": {
"requested_at": "2026-07-29T18:11:40.046766+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.061567Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.075936Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.090919Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.104372Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.117756Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.129217Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.142817Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.156853Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.156923Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 2108849083,
"load_duration": 96615500,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1912789459,
"eval_count": 8,
"eval_duration": 92838999
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 2.1105050831101835,
"wall_s": 2.1105050831101835,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:42.156923Z",
"done": true,
"done_reason": "length",
"total_duration": 2108849083,
"load_duration": 96615500,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1912789459,
"eval_count": 8,
"eval_duration": 92838999
},
"decode_tokens_per_second": 86.1706835076927
},
"miss": {
"requested_at": "2026-07-29T18:11:42.157967+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nM0000002 operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "5e05985ae39ddaa18acdcfd2d39d0b8efddb9b139937f22b9e181782e3e28f15",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.834333Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.845986Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.857526Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.868177Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.87954Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.891618Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.902224Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.913309Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.913337Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1751651375,
"load_duration": 94799625,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1573982625,
"eval_count": 8,
"eval_duration": 76847082
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.7556201671250165,
"wall_s": 1.7556201671250165,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:43.913337Z",
"done": true,
"done_reason": "length",
"total_duration": 1751651375,
"load_duration": 94799625,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1573982625,
"eval_count": 8,
"eval_duration": 76847082
},
"decode_tokens_per_second": 104.10284674179302
},
"prompt_character_lengths_equal": true
},
{
"pair": 4,
"hit": {
"requested_at": "2026-07-29T18:11:43.913687+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.410083Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.421356Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.431884Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.442457Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.452828Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.462551Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.474508Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.485245Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.485287Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1569786583,
"load_duration": 82804708,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1408120209,
"eval_count": 8,
"eval_duration": 73147666
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.57185516692698,
"wall_s": 1.57185516692698,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:45.485287Z",
"done": true,
"done_reason": "length",
"total_duration": 1569786583,
"load_duration": 82804708,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1408120209,
"eval_count": 8,
"eval_duration": 73147666
},
"decode_tokens_per_second": 109.36780949374379
},
"miss": {
"requested_at": "2026-07-29T18:11:45.486136+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nM0000003 operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "9da547f3d215075389143a170d95a1947e71e3d1f3c12e697130a819e20fda6b",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:46.982631Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:46.993972Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.005556Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.017045Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.027608Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.038773Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.049151Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.059708Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.059712Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1570844458,
"load_duration": 80022667,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1410419875,
"eval_count": 8,
"eval_duration": 75092419
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.5738307079300284,
"wall_s": 1.5738307079300284,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:47.059712Z",
"done": true,
"done_reason": "length",
"total_duration": 1570844458,
"load_duration": 80022667,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1410419875,
"eval_count": 8,
"eval_duration": 75092419
},
"decode_tokens_per_second": 106.53538807958765
},
"prompt_character_lengths_equal": true
},
{
"pair": 5,
"hit": {
"requested_at": "2026-07-29T18:11:47.060102+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\n# Stable operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "d106520fb446d136f3d7b04e0ef1fdf9b30bfcf5752afad7368d45ed4519285d",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.563802Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.576037Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.587893Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.599171Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.610787Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.622242Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.633874Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.645331Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.645358Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1582364250,
"load_duration": 81367500,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1416483625,
"eval_count": 8,
"eval_duration": 79164709
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.5853260830044746,
"wall_s": 1.5853260830044746,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:48.645358Z",
"done": true,
"done_reason": "length",
"total_duration": 1582364250,
"load_duration": 81367500,
"prompt_eval_count": 2753,
"prompt_eval_duration": 1416483625,
"eval_count": 8,
"eval_duration": 79164709
},
"decode_tokens_per_second": 101.05513051276422
},
"miss": {
"requested_at": "2026-07-29T18:11:48.645693+00:00",
"request": {
"model": "qwen3:0.6b",
"prompt": "<|im_start|>system\nM0000004 operating manual\nKeep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. Keep this stable operating-manual sentence unchanged. <|im_end|>\n<|im_start|>user\nReply with only the word READY.<|im_end|>\n<|im_start|>assistant\n",
"raw": true,
"stream": true,
"keep_alive": "10m",
"options": {
"temperature": 0,
"num_predict": 8,
"seed": 21
}
},
"request_prompt_sha256": "c7e56ba61ad2b2bec717d7fa0c4befce8553a5dcb4ad1f4c28785a82f8131e6e",
"raw_chunks": [
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.223772Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.23593Z",
"response": "",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.247167Z",
"response": "",
"thinking": "Okay",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.258737Z",
"response": "",
"thinking": ",",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.269776Z",
"response": "",
"thinking": " the",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.280624Z",
"response": "",
"thinking": " user",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.292644Z",
"response": "",
"thinking": " wants",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.303886Z",
"response": "",
"thinking": " me",
"done": false
},
{
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.303944Z",
"response": "",
"done": true,
"done_reason": "length",
"total_duration": 1656977334,
"load_duration": 88955709,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1484379917,
"eval_count": 8,
"eval_duration": 77961418
}
],
"raw_response": "",
"response_sha256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"ttft_s": 1.6585514163598418,
"wall_s": 1.6585514163598418,
"server": {
"model": "qwen3:0.6b",
"created_at": "2026-07-29T18:11:50.303944Z",
"done": true,
"done_reason": "length",
"total_duration": 1656977334,
"load_duration": 88955709,
"prompt_eval_count": 2759,
"prompt_eval_duration": 1484379917,
"eval_count": 8,
"eval_duration": 77961418
},
"decode_tokens_per_second": 102.6148600837404
},
"prompt_character_lengths_equal": true
}
],
"summary": {
"hit_ttft_s": [
0.1363926245830953,
1.1033918326720595,
2.1105050831101835,
1.57185516692698,
1.5853260830044746
],
"miss_ttft_s": [
0.8947271667420864,
1.6584319579415023,
1.7556201671250165,
1.5738307079300284,
1.6585514163598418
],
"hit_mean_s": 1.3014941580593586,
"miss_mean_s": 1.508232283219695,
"miss_over_hit": 1.1588467561534053,
"hit_faster_in_pairs": 4,
"matched_pairs": 5
}
},
"finished_at": "2026-07-29T18:11:50.304459+00:00",
"summary": {
"model_digest": "7df6b6e09427a769808717c0a93cadc4ae99ed4eb8bf5ca557c90846becea435",
"local_model_verified": true,
"tool_case_passed": true,
"mean_tool_case_decode_tokens_per_second": 106.72048078372569,
"exceeded_100_tokens_per_second_on_this_host": true,
"cache_observation": {
"hit_ttft_s": [
0.1363926245830953,
1.1033918326720595,
2.1105050831101835,
1.57185516692698,
1.5853260830044746
],
"miss_ttft_s": [
0.8947271667420864,
1.6584319579415023,
1.7556201671250165,
1.5738307079300284,
1.6585514163598418
],
"hit_mean_s": 1.3014941580593586,
"miss_mean_s": 1.508232283219695,
"miss_over_hit": 1.1588467561534053,
"hit_faster_in_pairs": 4,
"matched_pairs": 5
}
},
"official_complete": true
}