Spaces:
Running
Running
File size: 12,572 Bytes
4badc3b | 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 | /**
* Model API for Cloud Code
*
* Handles model listing and quota retrieval from the Cloud Code API.
*/
import {
ANTIGRAVITY_ENDPOINT_FALLBACKS,
ANTIGRAVITY_HEADERS,
LOAD_CODE_ASSIST_ENDPOINTS,
LOAD_CODE_ASSIST_HEADERS,
CLIENT_METADATA,
getModelFamily,
MODEL_VALIDATION_CACHE_TTL_MS
} from '../constants.js';
import { logger } from '../utils/logger.js';
import { throttledFetch } from '../utils/helpers.js';
// Model validation cache
const modelCache = {
validModels: new Set(),
lastFetched: 0,
fetchPromise: null // Prevents concurrent fetches
};
/**
* Check if a model is supported (Claude or Gemini)
* @param {string} modelId - Model ID to check
* @returns {boolean} True if model is supported
*/
function isSupportedModel(modelId) {
const family = getModelFamily(modelId);
return family === 'claude' || family === 'gemini';
}
/**
* List available models in Anthropic API format
* Fetches models dynamically from the Cloud Code API
*
* @param {string} token - OAuth access token
* @returns {Promise<{object: string, data: Array<{id: string, object: string, created: number, owned_by: string, description: string}>}>} List of available models
*/
export async function listModels(token) {
const data = await fetchAvailableModels(token);
if (!data || !data.models) {
return { object: 'list', data: [] };
}
const modelList = Object.entries(data.models)
.filter(([modelId]) => isSupportedModel(modelId))
.map(([modelId, modelData]) => ({
id: modelId,
object: 'model',
created: Math.floor(Date.now() / 1000),
owned_by: 'anthropic',
description: modelData.displayName || modelId
}));
// Warm the model validation cache
modelCache.validModels = new Set(modelList.map(m => m.id));
modelCache.lastFetched = Date.now();
return {
object: 'list',
data: modelList
};
}
/**
* Fetch available models with quota info from Cloud Code API
* Returns model quotas including remaining fraction and reset time
*
* @param {string} token - OAuth access token
* @param {string} [projectId] - Optional project ID for accurate quota info
* @returns {Promise<Object>} Raw response from fetchAvailableModels API
*/
export async function fetchAvailableModels(token, projectId = null) {
const headers = {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',
...ANTIGRAVITY_HEADERS
};
// Include project ID in body for accurate quota info (per Quotio implementation)
const body = projectId ? { project: projectId } : {};
for (const endpoint of ANTIGRAVITY_ENDPOINT_FALLBACKS) {
try {
const url = `${endpoint}/v1internal:fetchAvailableModels`;
const response = await throttledFetch(url, {
method: 'POST',
headers,
body: JSON.stringify(body)
});
if (!response.ok) {
const errorText = await response.text();
logger.warn(`[CloudCode] fetchAvailableModels error at ${endpoint}: ${response.status}`);
// Detect permanent ToS ban — no point trying other endpoints
if (response.status === 403) {
const lower = (errorText || '').toLowerCase();
if (lower.includes('has been disabled') && lower.includes('violation of terms of service')) {
throw new Error(`ACCOUNT_BANNED: ${errorText}`);
}
}
continue;
}
return await response.json();
} catch (error) {
logger.warn(`[CloudCode] fetchAvailableModels failed at ${endpoint}:`, error.message);
}
}
throw new Error('Failed to fetch available models from all endpoints');
}
/**
* Get model quotas for an account
* Extracts quota info (remaining fraction and reset time) for each model
*
* @param {string} token - OAuth access token
* @param {string} [projectId] - Optional project ID for accurate quota info
* @returns {Promise<Object>} Map of modelId -> { remainingFraction, resetTime }
*/
export async function getModelQuotas(token, projectId = null) {
const data = await fetchAvailableModels(token, projectId);
if (!data || !data.models) return {};
const quotas = {};
for (const [modelId, modelData] of Object.entries(data.models)) {
// Only include Claude and Gemini models
if (!isSupportedModel(modelId)) continue;
if (modelData.quotaInfo) {
quotas[modelId] = {
// When remainingFraction is missing but resetTime is present, quota is exhausted (0%)
remainingFraction: modelData.quotaInfo.remainingFraction ?? (modelData.quotaInfo.resetTime ? 0 : null),
resetTime: modelData.quotaInfo.resetTime ?? null
};
}
}
return quotas;
}
/**
* Parse tier ID string to determine subscription level
* @param {string} tierId - The tier ID from the API
* @returns {'free' | 'pro' | 'ultra' | 'unknown'} The subscription tier
*/
export function parseTierId(tierId) {
if (!tierId) return 'unknown';
const lower = tierId.toLowerCase();
if (lower.includes('ultra')) {
return 'ultra';
}
if (lower === 'standard-tier') {
// standard-tier = "Gemini Code Assist" (paid, project-based)
return 'pro';
}
if (lower.includes('pro') || lower.includes('premium')) {
return 'pro';
}
if (lower === 'free-tier' || lower.includes('free')) {
return 'free';
}
return 'unknown';
}
/**
* Get subscription tier for an account
* Calls loadCodeAssist API to discover project ID and subscription tier
*
* @param {string} token - OAuth access token
* @returns {Promise<{tier: string, projectId: string|null}>} Subscription tier (free/pro/ultra) and project ID
*/
export async function getSubscriptionTier(token) {
const headers = {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json',
...LOAD_CODE_ASSIST_HEADERS
};
for (const endpoint of LOAD_CODE_ASSIST_ENDPOINTS) {
try {
const url = `${endpoint}/v1internal:loadCodeAssist`;
const response = await throttledFetch(url, {
method: 'POST',
headers,
body: JSON.stringify({
metadata: CLIENT_METADATA,
mode: 1
})
});
if (!response.ok) {
const errorText = await response.text().catch(() => '');
logger.warn(`[CloudCode] loadCodeAssist error at ${endpoint}: ${response.status}`);
// Detect permanent ToS ban — no point trying other endpoints
if (response.status === 403) {
const lower = (errorText || '').toLowerCase();
if (lower.includes('has been disabled') && lower.includes('violation of terms of service')) {
throw new Error(`ACCOUNT_BANNED: ${errorText}`);
}
}
continue;
}
const data = await response.json();
// Debug: Log all tier-related fields from the response
logger.debug(`[CloudCode] loadCodeAssist tier data: paidTier=${JSON.stringify(data.paidTier)}, currentTier=${JSON.stringify(data.currentTier)}, allowedTiers=${JSON.stringify(data.allowedTiers?.map(t => ({ id: t?.id, isDefault: t?.isDefault })))}`);
// Extract project ID
let projectId = null;
if (typeof data.cloudaicompanionProject === 'string') {
projectId = data.cloudaicompanionProject;
} else if (data.cloudaicompanionProject?.id) {
projectId = data.cloudaicompanionProject.id;
}
// Extract subscription tier
// Priority: paidTier > currentTier > allowedTiers
// - paidTier.id: "g1-pro-tier", "g1-ultra-tier" (Google One subscription)
// - currentTier.id: "standard-tier" (pro), "free-tier" (free)
// - allowedTiers: fallback when currentTier is missing
// Note: paidTier is sometimes missing from the response even for Pro accounts
let tier = 'unknown';
let tierId = null;
let tierSource = null;
// 1. Check paidTier first (Google One AI subscription - most reliable)
if (data.paidTier?.id) {
tierId = data.paidTier.id;
tier = parseTierId(tierId);
tierSource = 'paidTier';
}
// 2. Fall back to currentTier if paidTier didn't give us a tier
if (tier === 'unknown' && data.currentTier?.id) {
tierId = data.currentTier.id;
tier = parseTierId(tierId);
tierSource = 'currentTier';
}
// 3. Fall back to allowedTiers (find the default or first non-free tier)
if (tier === 'unknown' && Array.isArray(data.allowedTiers) && data.allowedTiers.length > 0) {
// First look for the default tier
let defaultTier = data.allowedTiers.find(t => t?.isDefault);
if (!defaultTier) {
defaultTier = data.allowedTiers[0];
}
if (defaultTier?.id) {
tierId = defaultTier.id;
tier = parseTierId(tierId);
tierSource = 'allowedTiers';
}
}
logger.debug(`[CloudCode] Subscription detected: ${tier} (tierId: ${tierId}, source: ${tierSource}), Project: ${projectId}`);
return { tier, projectId };
} catch (error) {
logger.warn(`[CloudCode] loadCodeAssist failed at ${endpoint}:`, error.message);
}
}
// Fallback: return default values if all endpoints fail
logger.warn('[CloudCode] Failed to detect subscription tier from all endpoints. Defaulting to free.');
return { tier: 'free', projectId: null };
}
/**
* Populate the model validation cache
* @param {string} token - OAuth access token
* @param {string} [projectId] - Optional project ID
* @returns {Promise<void>}
*/
async function populateModelCache(token, projectId = null) {
const now = Date.now();
// Check if cache is fresh
if (modelCache.validModels.size > 0 && (now - modelCache.lastFetched) < MODEL_VALIDATION_CACHE_TTL_MS) {
return;
}
// If already fetching, wait for it
if (modelCache.fetchPromise) {
await modelCache.fetchPromise;
return;
}
// Start fetch
modelCache.fetchPromise = (async () => {
try {
const data = await fetchAvailableModels(token, projectId);
if (data && data.models) {
const validIds = Object.keys(data.models).filter(modelId => isSupportedModel(modelId));
modelCache.validModels = new Set(validIds);
modelCache.lastFetched = Date.now();
logger.debug(`[CloudCode] Model cache populated with ${validIds.length} models`);
}
} catch (error) {
logger.warn(`[CloudCode] Failed to populate model cache: ${error.message}`);
// Don't throw - validation should degrade gracefully
} finally {
modelCache.fetchPromise = null;
}
})();
await modelCache.fetchPromise;
}
/**
* Check if a model ID is valid (exists in the available models list)
* Uses a cached model list with TTL-based refresh
* @param {string} modelId - Model ID to validate
* @param {string} token - OAuth access token for cache population
* @param {string} [projectId] - Optional project ID
* @returns {Promise<boolean>} True if model is valid
*/
export async function isValidModel(modelId, token, projectId = null) {
try {
// Populate cache if needed
await populateModelCache(token, projectId);
// If cache is populated, validate against it
if (modelCache.validModels.size > 0) {
return modelCache.validModels.has(modelId);
}
// Cache empty (fetch failed) - fail open, let API validate
return true;
} catch (error) {
logger.debug(`[CloudCode] Model validation error: ${error.message}`);
// Fail open - let the API validate
return true;
}
}
|