llm.rs

 1pub mod db;
 2mod token;
 3
 4use crate::Cents;
 5
 6pub use token::*;
 7
 8pub const AGENT_EXTENDED_TRIAL_FEATURE_FLAG: &str = "agent-extended-trial";
 9
10/// The default value to use for maximum spend per month if the user did not
11/// explicitly set a maximum spend.
12///
13/// Used to prevent surprise bills.
14pub const DEFAULT_MAX_MONTHLY_SPEND: Cents = Cents::from_dollars(10);