File size: 27,401 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 | use rquest;
use serde::{Deserialize, Serialize};
use serde_json::json;
use crate::models::QuotaData;
use crate::modules::config;
// Quota API endpoints (fallback order: Sandbox → Daily → Prod)
const QUOTA_API_ENDPOINTS: [&str; 3] = [
"https://daily-cloudcode-pa.sandbox.googleapis.com/v1internal:fetchAvailableModels",
"https://daily-cloudcode-pa.googleapis.com/v1internal:fetchAvailableModels",
"https://cloudcode-pa.googleapis.com/v1internal:fetchAvailableModels",
];
/// Critical retry threshold: considered near recovery when quota reaches 95%
const NEAR_READY_THRESHOLD: i32 = 95;
const MAX_RETRIES: u32 = 3;
const RETRY_DELAY_SECS: u64 = 30;
#[derive(Debug, Serialize, Deserialize)]
struct QuotaResponse {
models: std::collections::HashMap<String, ModelInfo>,
#[serde(rename = "deprecatedModelIds")]
deprecated_model_ids: Option<std::collections::HashMap<String, DeprecatedModelInfo>>,
}
#[derive(Debug, Serialize, Deserialize)]
struct DeprecatedModelInfo {
#[serde(rename = "newModelId")]
new_model_id: String,
}
#[derive(Debug, Serialize, Deserialize)]
struct ModelInfo {
#[serde(rename = "quotaInfo")]
quota_info: Option<QuotaInfo>,
#[serde(rename = "displayName")]
display_name: Option<String>,
#[serde(rename = "supportsImages")]
supports_images: Option<bool>,
#[serde(rename = "supportsThinking")]
supports_thinking: Option<bool>,
#[serde(rename = "thinkingBudget")]
thinking_budget: Option<i32>,
recommended: Option<bool>,
#[serde(rename = "maxTokens")]
max_tokens: Option<i32>,
#[serde(rename = "maxOutputTokens")]
max_output_tokens: Option<i32>,
#[serde(rename = "supportedMimeTypes")]
supported_mime_types: Option<std::collections::HashMap<String, bool>>,
}
#[derive(Debug, Serialize, Deserialize)]
struct QuotaInfo {
#[serde(rename = "remainingFraction")]
remaining_fraction: Option<f64>,
#[serde(rename = "resetTime")]
reset_time: Option<String>,
}
#[derive(Debug, Deserialize)]
struct LoadProjectResponse {
#[serde(rename = "cloudaicompanionProject")]
project_id: Option<String>,
#[serde(rename = "currentTier")]
current_tier: Option<Tier>,
#[serde(rename = "paidTier")]
paid_tier: Option<Tier>,
#[serde(rename = "allowedTiers")]
allowed_tiers: Option<Vec<Tier>>,
#[serde(rename = "ineligibleTiers")]
ineligible_tiers: Option<Vec<IneligibleTier>>,
}
#[derive(Debug, Deserialize)]
struct IneligibleTier {
#[allow(dead_code)]
#[serde(rename = "reasonCode")]
reason_code: Option<String>,
}
#[derive(Debug, Deserialize)]
struct Tier {
#[allow(dead_code)]
is_default: Option<bool>,
id: Option<String>,
#[allow(dead_code)]
#[serde(rename = "quotaTier")]
quota_tier: Option<String>,
name: Option<String>,
#[allow(dead_code)]
slug: Option<String>,
}
/// Get shared HTTP Client (15s timeout) for pure info fetching (No JA3)
async fn create_standard_client(account_id: Option<&str>) -> rquest::Client {
if let Some(pool) = crate::proxy::proxy_pool::get_global_proxy_pool() {
pool.get_effective_standard_client(account_id, 15).await
} else {
crate::utils::http::get_standard_client()
}
}
/// Get shared HTTP Client (60s timeout) for pure info fetching (No JA3)
#[allow(dead_code)] // 预留给预热/后台任务调用
async fn create_long_standard_client(account_id: Option<&str>) -> rquest::Client {
if let Some(pool) = crate::proxy::proxy_pool::get_global_proxy_pool() {
pool.get_effective_standard_client(account_id, 60).await
} else {
crate::utils::http::get_long_standard_client()
}
}
const CLOUD_CODE_BASE_URL: &str = "https://daily-cloudcode-pa.sandbox.googleapis.com";
/// Fetch project ID and subscription tier
async fn fetch_project_id(access_token: &str, email: &str, account_id: Option<&str>) -> (Option<String>, Option<String>) {
let client = create_standard_client(account_id).await;
let meta = json!({"metadata": {"ideType": "ANTIGRAVITY"}});
let res = client
.post(format!("{}/v1internal:loadCodeAssist", CLOUD_CODE_BASE_URL))
.header(rquest::header::AUTHORIZATION, format!("Bearer {}", access_token))
.header(rquest::header::CONTENT_TYPE, "application/json")
.header(rquest::header::USER_AGENT, crate::constants::NATIVE_OAUTH_USER_AGENT.as_str())
.json(&meta)
.send()
.await;
match res {
Ok(res) => {
if res.status().is_success() {
if let Ok(data) = res.json::<LoadProjectResponse>().await {
let project_id = data.project_id.clone();
// Core logic: Multi-level fallback for tier extraction
// 1. Paid Tier (Google One AI Premium etc.)
// 2. Current Tier (If not ineligible)
// 3. Allowed Tiers (Restricted/Default proxy access)
let mut subscription_tier = data.paid_tier.as_ref().and_then(|t| t.name.clone())
.or_else(|| data.paid_tier.as_ref().and_then(|t| t.id.clone()));
let is_ineligible = data.ineligible_tiers.is_some() && !data.ineligible_tiers.as_ref().unwrap().is_empty();
if subscription_tier.is_none() {
if !is_ineligible {
subscription_tier = data.current_tier.as_ref().and_then(|t| t.name.clone())
.or_else(|| data.current_tier.as_ref().and_then(|t| t.id.clone()));
} else {
// If account is marked as INELIGIBLE, drop to allowedTiers and extract default
if let Some(mut allowed) = data.allowed_tiers {
if let Some(default_tier) = allowed.iter_mut().find(|t| t.is_default == Some(true)) {
if let Some(name) = &default_tier.name {
subscription_tier = Some(format!("{} (Restricted)", name));
} else if let Some(id) = &default_tier.id {
subscription_tier = Some(format!("{} (Restricted)", id));
}
}
}
}
}
if let Some(ref tier) = subscription_tier {
crate::modules::logger::log_info(&format!(
"📊 [{}] Subscription identified successfully: {}", email, tier
));
}
return (project_id, subscription_tier);
}
} else {
crate::modules::logger::log_warn(&format!(
"⚠️ [{}] loadCodeAssist failed: Status: {}", email, res.status()
));
}
}
Err(e) => {
crate::modules::logger::log_error(&format!("❌ [{}] loadCodeAssist network error: {}", email, e));
}
}
(None, None)
}
/// Unified entry point for fetching account quota
pub async fn fetch_quota(access_token: &str, email: &str, account_id: Option<&str>) -> crate::error::AppResult<(QuotaData, Option<String>)> {
fetch_quota_with_cache(access_token, email, None, account_id).await
}
/// Fetch quota with cache support
pub async fn fetch_quota_with_cache(
access_token: &str,
email: &str,
cached_project_id: Option<&str>,
account_id: Option<&str>,
) -> crate::error::AppResult<(QuotaData, Option<String>)> {
use crate::error::AppError;
// Optimization: Skip loadCodeAssist call if project_id is cached to save API quota
let (project_id, subscription_tier) = if let Some(pid) = cached_project_id {
(Some(pid.to_string()), None)
} else {
fetch_project_id(access_token, email, account_id).await
};
// We keep project_id to store in the DB, but we NO LONGER force inject it into payload if it's absent
let client = create_standard_client(account_id).await;
let payload = if let Some(ref pid) = project_id {
json!({ "project": pid })
} else {
json!({}) // Empty payload fallback
};
let mut last_error: Option<AppError> = None;
for (ep_idx, ep_url) in QUOTA_API_ENDPOINTS.iter().enumerate() {
let has_next = ep_idx + 1 < QUOTA_API_ENDPOINTS.len();
match client
.post(*ep_url)
.bearer_auth(access_token)
.header(rquest::header::USER_AGENT, crate::constants::NATIVE_OAUTH_USER_AGENT.as_str())
.json(&payload)
.send()
.await
{
Ok(response) => {
// Convert HTTP error status to AppError
if let Err(_) = response.error_for_status_ref() {
let status = response.status();
// ✅ Special handling for 403 Forbidden - return directly, no retry
if status == rquest::StatusCode::FORBIDDEN {
crate::modules::logger::log_warn(&format!(
"Account unauthorized (403 Forbidden), marking as forbidden"
));
let mut q = QuotaData::new();
q.is_forbidden = true;
q.subscription_tier = subscription_tier.clone();
return Ok((q, project_id.clone()));
}
let text = response.text().await.unwrap_or_default();
// 429/5xx: fallback to next endpoint
if has_next && (status == rquest::StatusCode::TOO_MANY_REQUESTS || status.is_server_error()) {
crate::modules::logger::log_warn(&format!("Quota API {} returned {}, falling back to next endpoint", ep_url, status));
last_error = Some(AppError::Unknown(format!("HTTP {} - {}", status, text)));
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
continue;
}
return Err(AppError::Unknown(format!("API Error: {} - {}", status, text)));
}
if ep_idx > 0 {
crate::modules::logger::log_info(&format!("Quota API fallback succeeded at endpoint #{}", ep_idx + 1));
}
let quota_response: QuotaResponse = response
.json()
.await
.map_err(AppError::from)?;
let mut quota_data = QuotaData::new();
// Use debug level for detailed info to avoid console noise
tracing::debug!("Quota API returned {} models", quota_response.models.len());
for (name, info) in quota_response.models {
if let Some(quota_info) = info.quota_info {
let percentage = quota_info.remaining_fraction
.map(|f| (f * 100.0) as i32)
.unwrap_or(0);
let reset_time = quota_info.reset_time.clone().unwrap_or_default();
// Only keep models we care about (exclude internal chat models)
if name.starts_with("gemini") || name.starts_with("claude") || name.starts_with("gpt") || name.starts_with("image") || name.starts_with("imagen") {
let model_quota = crate::models::quota::ModelQuota {
name,
percentage,
reset_time,
display_name: info.display_name,
supports_images: info.supports_images,
supports_thinking: info.supports_thinking,
thinking_budget: info.thinking_budget,
recommended: info.recommended,
max_tokens: info.max_tokens,
max_output_tokens: info.max_output_tokens,
supported_mime_types: info.supported_mime_types,
};
quota_data.add_model(model_quota);
}
}
}
// Parse deprecated model routing rules
if let Some(deprecated) = quota_response.deprecated_model_ids {
for (old_id, info) in deprecated {
quota_data.model_forwarding_rules.insert(old_id, info.new_model_id);
}
}
// Set subscription tier
quota_data.subscription_tier = subscription_tier.clone();
return Ok((quota_data, project_id.clone()));
},
Err(e) => {
crate::modules::logger::log_warn(&format!("Quota API request failed at {}: {}", ep_url, e));
last_error = Some(AppError::from(e));
if has_next {
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
}
}
}
}
Err(last_error.unwrap_or_else(|| AppError::Unknown("Quota fetch failed: all endpoints exhausted".to_string())))
}
/// Internal fetch quota logic
#[allow(dead_code)]
pub async fn fetch_quota_inner(access_token: &str, email: &str) -> crate::error::AppResult<(QuotaData, Option<String>)> {
fetch_quota_with_cache(access_token, email, None, None).await
}
/// Batch fetch all account quotas (backup functionality)
#[allow(dead_code)]
pub async fn fetch_all_quotas(accounts: Vec<(String, String, String)>) -> Vec<(String, crate::error::AppResult<QuotaData>)> {
let mut results = Vec::new();
for (id, email, access_token) in accounts {
let res = fetch_quota(&access_token, &email, Some(&id)).await;
results.push((email, res.map(|(q, _)| q)));
}
results
}
/// Get valid token (auto-refresh if expired)
pub async fn get_valid_token_for_warmup(account: &crate::models::account::Account) -> Result<(String, String), String> {
let mut account = account.clone();
// Check and auto-refresh token
let new_token = crate::modules::oauth::ensure_fresh_token(&account.token, Some(&account.id)).await?;
// If token changed (meant refreshed), save it
if new_token.access_token != account.token.access_token {
account.token = new_token;
if let Err(e) = crate::modules::account::save_account(&account) {
crate::modules::logger::log_warn(&format!("[Warmup] Failed to save refreshed token: {}", e));
} else {
crate::modules::logger::log_info(&format!("[Warmup] Successfully refreshed and saved new token for {}", account.email));
}
}
// Fetch project_id
let (project_id, _) = fetch_project_id(&account.token.access_token, &account.email, Some(&account.id)).await;
let final_pid = project_id.unwrap_or_else(|| "bamboo-precept-lgxtn".to_string());
Ok((account.token.access_token, final_pid))
}
/// Send warmup request via proxy internal API
pub async fn warmup_model_directly(
access_token: &str,
model_name: &str,
project_id: &str,
email: &str,
percentage: i32,
_account_id: Option<&str>,
) -> bool {
// Get currently configured proxy port
let port = config::load_app_config()
.map(|c| c.proxy.port)
.unwrap_or(8045);
let warmup_url = format!("http://127.0.0.1:{}/internal/warmup", port);
let body = json!({
"email": email,
"model": model_name,
"access_token": access_token,
"project_id": project_id
});
// Use a no-proxy client for local loopback requests
// This prevents Docker environments from routing localhost through external proxies
let client = rquest::Client::builder()
.timeout(std::time::Duration::from_secs(60))
.no_proxy()
.build()
.unwrap_or_else(|_| rquest::Client::new());
let resp = client
.post(&warmup_url)
.header("Content-Type", "application/json")
.json(&body)
.send()
.await;
match resp {
Ok(response) => {
let status = response.status();
if status.is_success() {
crate::modules::logger::log_info(&format!("[Warmup] ✓ Triggered {} for {} (was {}%)", model_name, email, percentage));
true
} else {
let text = response.text().await.unwrap_or_default();
crate::modules::logger::log_warn(&format!("[Warmup] ✗ {} for {} (was {}%): HTTP {} - {}", model_name, email, percentage, status, text));
false
}
}
Err(e) => {
crate::modules::logger::log_warn(&format!("[Warmup] ✗ {} for {} (was {}%): {}", model_name, email, percentage, e));
false
}
}
}
/// Smart warmup for all accounts
pub async fn warm_up_all_accounts() -> Result<String, String> {
let mut retry_count = 0;
loop {
let all_accounts = crate::modules::account::list_accounts().unwrap_or_default();
// [FIX] 过滤掉禁用反代的账号
let target_accounts: Vec<_> = all_accounts
.into_iter()
.filter(|a| !a.disabled && !a.proxy_disabled)
.collect();
if target_accounts.is_empty() {
return Ok("No accounts available".to_string());
}
crate::modules::logger::log_info(&format!("[Warmup] Screening models for {} accounts...", target_accounts.len()));
let mut warmup_items = Vec::new();
let mut has_near_ready_models = false;
// Concurrently fetch quotas (batch size 5)
let batch_size = 5;
for batch in target_accounts.chunks(batch_size) {
let mut handles = Vec::new();
for account in batch {
let account = account.clone();
let handle = tokio::spawn(async move {
let (token, pid) = match get_valid_token_for_warmup(&account).await {
Ok(t) => t,
Err(_) => return None,
};
let quota = fetch_quota_with_cache(&token, &account.email, Some(&pid), Some(&account.id)).await.ok();
Some((account.id.clone(), account.email.clone(), token, pid, quota))
});
handles.push(handle);
}
for handle in handles {
if let Ok(Some((id, email, token, pid, Some((fresh_quota, _))))) = handle.await {
// [FIX] 预热阶段检测到 403 时,使用统一禁用逻辑,确保账号文件和索引同时更新
if fresh_quota.is_forbidden {
crate::modules::logger::log_warn(&format!(
"[Warmup] Account {} returned 403 Forbidden during quota fetch, marking as forbidden",
email
));
let _ = crate::modules::account::mark_account_forbidden(&id, "Warmup: 403 Forbidden - quota fetch denied");
continue;
}
let mut account_warmed_series = std::collections::HashSet::new();
for m in fresh_quota.models {
if m.percentage >= 100 {
let model_to_ping = m.name.clone();
// Removed hardcoded whitelist - now warms up any model at 100%
if !account_warmed_series.contains(&model_to_ping) {
warmup_items.push((id.clone(), email.clone(), model_to_ping.clone(), token.clone(), pid.clone(), m.percentage));
account_warmed_series.insert(model_to_ping);
}
} else if m.percentage >= NEAR_READY_THRESHOLD {
has_near_ready_models = true;
}
}
}
}
}
if !warmup_items.is_empty() {
let total_before = warmup_items.len();
// Filter out models warmed up within 4 hours
warmup_items.retain(|(_, email, model, _, _, _)| {
let history_key = format!("{}:{}:100", email, model);
!crate::modules::scheduler::check_cooldown(&history_key, 14400)
});
if warmup_items.is_empty() {
let skipped = total_before;
crate::modules::logger::log_info(&format!("[Warmup] Returning to frontend: All models in cooldown, skipped {}", skipped));
return Ok(format!("All models are in cooldown, skipped {} items", skipped));
}
let total = warmup_items.len();
let skipped = total_before - total;
if skipped > 0 {
crate::modules::logger::log_info(&format!(
"[Warmup] Skipped {} models in cooldown, preparing to warmup {}",
skipped, total
));
}
crate::modules::logger::log_info(&format!(
"[Warmup] 🔥 Starting manual warmup for {} models",
total
));
tokio::spawn(async move {
let mut success = 0;
let batch_size = 3;
let now_ts = chrono::Utc::now().timestamp();
for (batch_idx, batch) in warmup_items.chunks(batch_size).enumerate() {
let mut handles = Vec::new();
for (id, email, model, token, pid, pct) in batch.iter() {
let id = id.clone();
let email = email.clone();
let model = model.clone();
let token = token.clone();
let pid = pid.clone();
let pct = *pct;
let handle = tokio::spawn(async move {
let result = warmup_model_directly(&token, &model, &pid, &email, pct, Some(&id)).await;
(result, email, model)
});
handles.push(handle);
}
for handle in handles {
match handle.await {
Ok((true, email, model)) => {
success += 1;
let history_key = format!("{}:{}:100", email, model);
crate::modules::scheduler::record_warmup_history(&history_key, now_ts);
}
_ => {}
}
}
if batch_idx < (warmup_items.len() + batch_size - 1) / batch_size - 1 {
tokio::time::sleep(tokio::time::Duration::from_secs(2)).await;
}
}
crate::modules::logger::log_info(&format!("[Warmup] Warmup task completed: success {}/{}", success, total));
tokio::time::sleep(tokio::time::Duration::from_secs(2)).await;
let _ = crate::modules::account::refresh_all_quotas_logic().await;
});
crate::modules::logger::log_info(&format!("[Warmup] Returning to frontend: Warmup task triggered for {} models", total));
return Ok(format!("Warmup task triggered for {} models", total));
}
if has_near_ready_models && retry_count < MAX_RETRIES {
retry_count += 1;
crate::modules::logger::log_info(&format!("[Warmup] Critical recovery model detected, waiting {}s to retry ({}/{})", RETRY_DELAY_SECS, retry_count, MAX_RETRIES));
tokio::time::sleep(tokio::time::Duration::from_secs(RETRY_DELAY_SECS)).await;
continue;
}
return Ok("No models need warmup".to_string());
}
}
/// Warmup for single account
pub async fn warm_up_account(account_id: &str) -> Result<String, String> {
let accounts = crate::modules::account::list_accounts().unwrap_or_default();
let account_owned = accounts.iter().find(|a| a.id == account_id).cloned().ok_or_else(|| "Account not found".to_string())?;
if account_owned.disabled || account_owned.proxy_disabled {
return Err("Account is disabled".to_string());
}
let email = account_owned.email.clone();
let (token, pid) = get_valid_token_for_warmup(&account_owned).await?;
let (fresh_quota, _) = fetch_quota_with_cache(&token, &email, Some(&pid), Some(&account_owned.id)).await.map_err(|e| format!("Failed to fetch quota: {}", e))?;
// [FIX] 预热阶段检测到 403 时,使用统一的 mark_account_forbidden 逻辑,
// 确保账号文件和索引文件同时更新,且前端刷新后能感知到禁用状态
if fresh_quota.is_forbidden {
crate::modules::logger::log_warn(&format!(
"[Warmup] Account {} returned 403 Forbidden during quota fetch, marking as forbidden",
email
));
let reason = "Warmup: 403 Forbidden - quota fetch denied";
let _ = crate::modules::account::mark_account_forbidden(account_id, reason);
return Err("Account is forbidden (403)".to_string());
}
let mut models_to_warm = Vec::new();
let mut warmed_series = std::collections::HashSet::new();
for m in fresh_quota.models {
if m.percentage >= 100 {
let model_name = m.name.clone();
// Removed hardcoded whitelist - now warms up any model at 100%
if !warmed_series.contains(&model_name) {
models_to_warm.push((model_name.clone(), m.percentage));
warmed_series.insert(model_name);
}
}
}
if models_to_warm.is_empty() {
return Ok("No warmup needed".to_string());
}
let warmed_count = models_to_warm.len();
let account_id_clone = account_id.to_string();
tokio::spawn(async move {
for (name, pct) in models_to_warm {
if warmup_model_directly(&token, &name, &pid, &email, pct, Some(&account_id_clone)).await {
let history_key = format!("{}:{}:100", email, name);
let now_ts = chrono::Utc::now().timestamp();
crate::modules::scheduler::record_warmup_history(&history_key, now_ts);
}
tokio::time::sleep(tokio::time::Duration::from_secs(1)).await;
}
let _ = crate::modules::account::refresh_all_quotas_logic().await;
});
Ok(format!("Successfully triggered warmup for {} model series", warmed_count))
}
|