* feat: add Ollama Cloud quota provider Adds ollama-cloud quota provider that reads auth cookie from ~/.config/ollama-quota/cookie and fetches usage from ollama.com/settings. Returns 3 windows: session, weekly, and premium (X/Y). Reuses Ollama logo via provider alias. * docs(quota): add ollama-cloud provider entry to DOCUMENTATION.md
25 lines
503 B
JavaScript
25 lines
503 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,
|
|
fetchMinimaxCodingPlanQuota,
|
|
fetchMinimaxCnCodingPlanQuota,
|
|
fetchOllamaCloudQuota
|
|
} from './providers/index.js';
|