Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
17
npm/packages/postgres-cli/src/commands/attention.d.ts
vendored
Normal file
17
npm/packages/postgres-cli/src/commands/attention.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* 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
|
||||
Reference in New Issue
Block a user