llmstat 0.1.0

Token usage distribution and cost across local LLM CLIs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Per-CLI data sources. Each produces `Call`s plus a coverage note.

pub mod claude;
pub mod codex;
pub mod devin;
pub mod filecache;

use crate::report::Call;

pub struct SourceOut {
    pub calls: Vec<Call>,
    /// One-line coverage summary for the report header.
    pub note: String,
}