UNPKG

@traversets/code-extractor

Version:

The TypeScript Code Extractor and Analyzer can be handy for RAG (Retrieval-Augmented Generation) systems for codebases. It provides a detailed and structured representation of the codebase that can be converted into embeddings, enabling more effective adv

7 lines (6 loc) 244 B
export interface IContextAwareLogger { debug(context: any, message: string): void; log(context: any, message: string): void; error(context: any, message: string, error: Error): void; warn(context: any, message: string): void; }