llm.rs

 1pub mod db;
 2mod token;
 3
 4pub use token::*;
 5
 6pub const AGENT_EXTENDED_TRIAL_FEATURE_FLAG: &str = "agent-extended-trial";
 7
 8/// The name of the feature flag that bypasses the account age check.
 9pub const BYPASS_ACCOUNT_AGE_CHECK_FEATURE_FLAG: &str = "bypass-account-age-check";
10
11/// The minimum account age an account must have in order to use the LLM service.
12pub const MIN_ACCOUNT_AGE_FOR_LLM_USE: chrono::Duration = chrono::Duration::days(30);