@ruvector/postgres-cli
Version:
Advanced AI vector database CLI for PostgreSQL - pgvector drop-in replacement with 53+ SQL functions, 39 attention mechanisms, GNN layers, hyperbolic embeddings, and self-learning capabilities
20 lines • 661 B
TypeScript
/**
* Benchmark Commands
* CLI commands for performance benchmarking
*/
import type { RuVectorClient } from '../client.js';
export interface BenchmarkRunOptions {
type: 'vector' | 'attention' | 'gnn' | 'all';
size: string;
dim: string;
}
export interface BenchmarkReportOptions {
format: 'json' | 'table' | 'markdown';
}
export declare class BenchmarkCommands {
static run(client: RuVectorClient, options: BenchmarkRunOptions): Promise<void>;
static report(client: RuVectorClient, options: BenchmarkReportOptions): Promise<void>;
static showInfo(): void;
}
export default BenchmarkCommands;
//# sourceMappingURL=benchmark.d.ts.map