codetether-agent 4.7.0-a-002.4

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Estimated token usage for a swarm execution.
#[derive(Debug, Clone, Default)]
pub struct TokenEstimate {
    /// Estimated prompt tokens.
    pub prompt_tokens: usize,
    /// Estimated completion tokens.
    pub completion_tokens: usize,
    /// Estimated total tokens.
    pub total_tokens: usize,
    /// Whether the estimate exceeds the model context window.
    pub exceeds_limit: bool,
    /// Context window of the selected model.
    pub context_window: usize,
}