Files
openchamber/packages/web/server/lib/quota/index.js
T
Nelson Pires 243abe9d16 refactor(quota): modularize quota providers and add docs map (#427)
* refactor(quota): migrate server quota providers to modular registry architecture

* docs: add quota module documentation

Explain the quota module purpose and runtime signals.
List entrypoints, provider registry, and response shape.
Outline steps to add a new provider and testing commands.
2026-02-15 16:19:10 +02:00

22 lines
414 B
JavaScript

/**
* Quota module
*
* Provides quota usage tracking for various AI provider services.
* @module quota
*/
export {
listConfiguredQuotaProviders,
fetchQuotaForProvider,
fetchClaudeQuota,
fetchOpenaiQuota,
fetchGoogleQuota,
fetchCodexQuota,
fetchCopilotQuota,
fetchCopilotAddonQuota,
fetchKimiQuota,
fetchOpenRouterQuota,
fetchZaiQuota,
fetchNanoGptQuota
} from './providers/index.js';