eka toimiva

This commit is contained in:
2026-04-01 22:14:48 +03:00
parent d70fd81f05
commit 02f6684378
8 changed files with 235 additions and 24 deletions

View File

@@ -245,7 +245,7 @@ impl NodeDb {
en: &serde_json::Value,
fi: &serde_json::Value,
overhead: f64,
duration_ms: u64,
duration_ms: f64,
) {
let conn = self.conn.lock().unwrap();
let now = chrono::Utc::now().to_rfc3339();
@@ -265,7 +265,7 @@ impl NodeDb {
en.get("chars_per_token").and_then(|v| v.as_f64()),
fi.get("chars_per_token").and_then(|v| v.as_f64()),
overhead,
duration_ms as i64,
duration_ms,
],
);
}