git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
17 lines
554 B
TypeScript
17 lines
554 B
TypeScript
/**
|
|
* Attention Commands
|
|
* CLI commands for attention mechanism operations
|
|
*/
|
|
import type { RuVectorClient } from '../client.js';
|
|
export interface AttentionComputeOptions {
|
|
query: string;
|
|
keys: string;
|
|
values: string;
|
|
type: 'scaled_dot' | 'multi_head' | 'flash';
|
|
}
|
|
export declare class AttentionCommands {
|
|
static compute(client: RuVectorClient, options: AttentionComputeOptions): Promise<void>;
|
|
static listTypes(client: RuVectorClient): Promise<void>;
|
|
}
|
|
export default AttentionCommands;
|
|
//# sourceMappingURL=attention.d.ts.map
|