pub trait BenchBaseSession: Send + Sync {
// Required methods
fn headless<'life0, 'async_trait>(
&'life0 mut self,
message: String,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn message_history(&self) -> Conversation;
fn get_total_token_usage(&self) -> Result<Option<i32>>;
fn get_session_id(&self) -> Result<String>;
}