@hivetechs/hive-ai
Version:
Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API
27 lines • 1.14 kB
TypeScript
/**
* Credit Tracking Tool
* Specialized tool for monitoring and displaying credit usage and purchases
*/
import { z } from 'zod';
export declare const creditTrackerToolName = "credit_tracker";
export declare const creditTrackerToolDescription = "Track your bonus credits, usage history, and purchase recommendations";
export declare const CreditTrackerSchema: z.ZodObject<{
action: z.ZodDefault<z.ZodEnum<["balance", "history", "projections", "recommendations"]>>;
period: z.ZodDefault<z.ZodEnum<["week", "month", "quarter", "all"]>>;
}, "strip", z.ZodTypeAny, {
action: "recommendations" | "history" | "balance" | "projections";
period: "all" | "week" | "month" | "quarter";
}, {
action?: "recommendations" | "history" | "balance" | "projections" | undefined;
period?: "all" | "week" | "month" | "quarter" | undefined;
}>;
export declare function runCreditTrackerTool(args: z.infer<typeof CreditTrackerSchema>): Promise<{
credit_info: string;
message: string;
error?: undefined;
} | {
error: string;
message: string;
credit_info?: undefined;
}>;
//# sourceMappingURL=credit-tracker.d.ts.map