@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
31 lines • 992 B
TypeScript
/**
* Usage Display Tool
* Provides a quick, easy-to-read overview of current usage and subscription status
*/
import { z } from 'zod';
export declare const usageDisplayToolName = "usage_display";
export declare const usageDisplayToolDescription = "Quick overview of your current usage and subscription status";
export declare const UsageDisplaySchema: z.ZodObject<{
format: z.ZodDefault<z.ZodEnum<["quick", "detailed"]>>;
}, "strip", z.ZodTypeAny, {
format: "detailed" | "quick";
}, {
format?: "detailed" | "quick" | undefined;
}>;
export declare function runUsageDisplayTool(args: z.infer<typeof UsageDisplaySchema>): Promise<{
usage_overview: string;
message: string;
status?: undefined;
error?: undefined;
} | {
status: string;
message: string;
usage_overview?: undefined;
error?: undefined;
} | {
error: string;
message: string;
usage_overview?: undefined;
status?: undefined;
}>;
//# sourceMappingURL=usage-display.d.ts.map