+
+
+ {labelWithTooltip(
+ "Current Cycle Spend (USD)",
+ "Spend for the current budget cycle. Resets to $0 when the budget window rolls over.",
+ )}
+
+
+ ${formatNumber(spend, 4)}
+
+
+ of {maxBudget === null ? "Unlimited" : `$${formatNumber(maxBudget, 4)}`}
+
+
+ {budgetReset && (
+
+ Resets {budgetReset}
+
+ )}
+
+
+
+
+
+ {labelWithTooltip(
+ "Rate Limits",
+ "Your per-member rate limits within this team.",
+ )}
+
+ TPM: {formatRateLimit(tpmLimit)}
+
+ RPM: {formatRateLimit(rpmLimit)}
+
+
+
+
+
+
+ {labelWithTooltip(
+ "Total Spend (USD)",
+ "Cumulative spend across all budget cycles within this team.",
+ )}
+
+
+ ${formatNumber(totalSpend, 4)}
+
+
+
+
+
+
+
+ {labelWithTooltip(
+ "Model Scope",
+ "Models you can access within this team.",
+ )}
+
+ {allowedModels && allowedModels.length > 0 ? (
+
+ {allowedModels.map((m) => (
+ {m}
+ ))}
+
+ ) : (
+ All Team Models
+ )}
+
+
+
+
+