gemini-cost-tracker
Version:
CLI tool to display token usage and costs for Gemini and Vertex AI
8 lines • 522 B
TypeScript
import { PriceModel } from '../../types/index.js';
export declare const PRICE_TABLE: Record<string, PriceModel>;
export declare const CURRENCY_RATES: Record<string, number>;
export declare function getPriceModel(modelName: string): PriceModel;
export declare function getAllSupportedModels(): string[];
export declare function getCurrencyRate(from: string, to: string): number;
export declare function convertPrice(amount: number, fromCurrency: string, toCurrency: string): number;
//# sourceMappingURL=priceTable.d.ts.map