UNPKG

hikma-engine

Version:

Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents

19 lines 756 B
export interface SimpleRAGResponse { success?: boolean; explanation?: string; model: string; device?: string; finishReason?: string; usage?: { total_tokens?: number; prompt_tokens?: number; completion_tokens?: number; }; [key: string]: any; } export declare function displaySuccess(message: string, metrics?: Record<string, any>): void; export declare function displayCommandHeader(command: string, description: string): void; export declare function displayProgress(message: string): void; export declare function displayRAGExplanation(query: string, ragResponse: SimpleRAGResponse): void; export declare function displayResults(results: any[], title: string): void; //# sourceMappingURL=ui.d.ts.map