fix: add missing JobContext fields and resolve fmt/clippy warnings

Add total_tokens_used and max_tokens fields to JobContext in
libsql_backend.rs, apply cargo fmt, and fix clippy warnings.

Co-Authored-By: Claude Opus 4.6 <[email protected]>
This commit is contained in:
Zaki
2026-02-13 08:24:03 -08:00
co-authored by Claude Opus 4.6
parent 83773af997
commit 5814d77b16
23 changed files with 637 additions and 525 deletions
+3 -1
View File
@@ -433,7 +433,9 @@ impl Workspace {
/// List all files recursively (flat list of all paths).
pub async fn list_all(&self) -> Result<Vec<String>, WorkspaceError> {
self.storage.list_all_paths(&self.user_id, self.agent_id).await
self.storage
.list_all_paths(&self.user_id, self.agent_id)
.await
}
// ==================== Convenience Methods ====================