@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
33 lines • 988 B
TypeScript
/**
* Helper functions for common log query operations
*/
/**
* Quick query functions for common use cases
*/
export declare const logQueries: {
/**
* Get all error logs
*/
errors: (limit?: number) => import("../types.js").QueryResult;
/**
* Get logs by correlation ID
*/
byCorrelation: (correlationId: string, limit?: number) => import("../types.js").QueryResult;
/**
* Get logs by source
*/
bySource: (source: string, limit?: number) => import("../types.js").QueryResult;
/**
* Get logs with specific tag
*/
byTag: (tag: string, limit?: number) => import("../types.js").QueryResult;
/**
* Get slow requests
*/
slowRequests: (minDuration?: number, limit?: number) => import("../types.js").QueryResult;
/**
* Get memory-intensive operations
*/
memoryIntensive: (minMemory?: number, limit?: number) => import("../types.js").QueryResult;
};
//# sourceMappingURL=helpers.d.ts.map