fix(db): frame_timestamp ISO8601 归一化 + perf(edge): ollama num_predict 1024→512

- db_layer._dt_or_none 支持 ISO 8601(带 T/Z/时区偏移) 归一化为 MariaDB DATETIME 标准格式, 修复 1292 Incorrect datetime value
- edge config ollama num_predict 512: qwen2.5:7b 在 ARM 上 1024 token 融合需 200s, 降到 512 加速且输出足够
This commit is contained in:
ericwyuan
2026-08-20 09:26:42 +08:00
parent d2fd01f134
commit 486eee4feb
2 changed files with 23 additions and 3 deletions

View File

@@ -72,6 +72,6 @@ models:
model_name: "qwen2.5:7b"
base_url: "http://localhost:11434"
timeout: 300
num_predict: 1024
num_predict: 512
circuit_breaker:
enabled: false