Skip to main content

SessionTracker

Struct SessionTracker 

Source
pub struct SessionTracker {
    pub model: String,
    pub turns: Vec<TurnUsage>,
}
Expand description

Accumulates token usage across all turns of a single agent session.

The tracker is owned by CoderAgent::run() for the duration of a task. At the end of the task it is embedded in AgentResult so the REPL can display the final totals and store them in SQLite.

§Example

let mut tracker = SessionTracker::new("gpt-4o".to_string());
tracker.record(Some(&Usage { prompt_tokens: 100, completion_tokens: 50, total_tokens: 150 }));
assert_eq!(tracker.total_prompt_tokens(), 100);
assert_eq!(tracker.total_completion_tokens(), 50);

Fields§

§model: String

Name of the model in use (used for cost lookup).

§turns: Vec<TurnUsage>

Ordered list of per-turn records (earliest first).

Implementations§

Source§

impl SessionTracker

Source

pub fn new(model: impl Into<String>) -> Self

Create a new empty tracker for model.

Source

pub fn record(&mut self, usage: Option<&Usage>)

Record the usage from one LLM call.

If the API returned no usage data (None) the turn is silently skipped — we never panic or error on missing usage.

Source

pub fn total_prompt_tokens(&self) -> u32

Sum of all prompt tokens across every turn.

Source

pub fn total_completion_tokens(&self) -> u32

Sum of all completion tokens across every turn.

Source

pub fn total_tokens(&self) -> u32

Grand total tokens (prompt + completion).

Source

pub fn turn_count(&self) -> usize

Number of turns recorded.

Source

pub fn estimated_cost_usd(&self) -> Option<f64>

Estimate cost in USD using the built-in price table.

Returns None when the model isn’t found in the table. Prices are per 1,000,000 tokens (as published by the providers).

Source

pub fn summary_line(&self) -> String

Format a short one-line summary suitable for the completion banner.

Example: 15,678 tokens (~$0.047) If no turns were recorded (provider didn’t return usage), returns "".

Source

pub fn detailed_report(&self) -> String

Format a detailed multi-line report for the /tokens REPL command.

Shows per-turn breakdown plus session totals and cost estimate.

Trait Implementations§

Source§

impl Clone for SessionTracker

Source§

fn clone(&self) -> SessionTracker

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SessionTracker

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more