@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
20 lines • 791 B
TypeScript
/**
* Health Status Tool
*
* Provides comprehensive system health monitoring for hive-ai.
* Displays OpenRouter connectivity, database health, model availability, and error statistics.
*/
import { z } from "zod";
export declare const HealthStatusToolSchema: z.ZodObject<{
detailed: z.ZodDefault<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
detailed: boolean;
}, {
detailed?: boolean | undefined;
}>;
export declare function runHealthStatusTool(args: z.infer<typeof HealthStatusToolSchema>): Promise<{
result: string;
}>;
export declare const healthStatusToolName = "health_status";
export declare const healthStatusToolDescription = "Check system health including OpenRouter connectivity, database status, and error statistics";
//# sourceMappingURL=health-status.d.ts.map