Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Control agent costs with budget limits
Set Budget
use praisonai::Agent; let agent = Agent::new() .name("Assistant") .max_tokens(10000) // Token limit .build()?; // Agent stops when limit reached
Track Usage
let response = agent.chat("Hello").await?; let usage = agent.usage(); println!("Tokens used: {}", usage.total_tokens); println!("Estimated cost: ${:.4}", usage.estimated_cost);
max_tokens
usize
max_cost
f64
max_requests