Made Jarvis more mobile friendly

This commit is contained in:
2026-04-21 11:00:39 +02:00
parent a72eef4b82
commit eaea8d94b1
14 changed files with 604 additions and 97 deletions
+2
View File
@@ -24,6 +24,8 @@ class ToolCallResult:
class UsageStats:
input_tokens: int = 0
output_tokens: int = 0
cache_read_tokens: int = 0 # Anthropic: tokens served from cache (billed at ~10%)
cache_write_tokens: int = 0 # Anthropic: tokens written to cache (billed at ~125%)
@property
def total_tokens(self) -> int: