/** * GNN Commands * CLI commands for Graph Neural Network operations */ import type { RuVectorClient } from '../client.js'; export interface GnnCreateOptions { type: 'gcn' | 'graphsage' | 'gat' | 'gin'; inputDim: string; outputDim: string; } export interface GnnForwardOptions { features: string; edges: string; } export declare class GnnCommands { static create(client: RuVectorClient, name: string, options: GnnCreateOptions): Promise; static forward(client: RuVectorClient, layer: string, options: GnnForwardOptions): Promise; static listTypes(): Promise; } export default GnnCommands; //# sourceMappingURL=gnn.d.ts.map