brainy/.recovery-workspace/dist-backup-20250910-141917/cli/commands/neural.d.ts

26 lines
594 B
TypeScript
Raw Normal View History

/**
* 🧠 Neural Similarity API Commands
*
* CLI interface for semantic similarity, clustering, and neural operations
*/
interface CommandArguments {
action?: string;
id?: string;
query?: string;
threshold?: number;
format?: string;
output?: string;
limit?: number;
algorithm?: string;
dimensions?: number;
explain?: boolean;
_: string[];
}
export declare const neuralCommand: {
command: string;
describe: string;
builder: (yargs: any) => any;
handler: (argv: CommandArguments) => Promise<void>;
};
export default neuralCommand;