1 2 3 4 5 6 7 8 9 10 11 12 13
/// AI call timeout (seconds) pub(super) const AI_TIMEOUT_SECS: u64 = 90; pub struct UsageContext<'a> { pub project: Option<&'a str>, pub operation: &'a str, } pub(super) struct AiCallResult { pub text: String, pub executor: &'static str, pub model: String, }