UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

13 lines (12 loc) 439 B
import { type ProviderAuth } from "./provider-usage.auth.js"; import type { UsageProviderId, UsageSummary } from "./provider-usage.types.js"; type UsageSummaryOptions = { now?: number; timeoutMs?: number; providers?: UsageProviderId[]; auth?: ProviderAuth[]; agentDir?: string; fetch?: typeof fetch; }; export declare function loadProviderUsageSummary(opts?: UsageSummaryOptions): Promise<UsageSummary>; export {};