mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
8 lines
No EOL
255 B
TypeScript
8 lines
No EOL
255 B
TypeScript
import type { IAIFunctionDefinition } from "./IAIFunctionDefinition";
|
|
import { ListVaultFiles } from "./ListVaultFiles";
|
|
|
|
export class AIFunctionDefinitions {
|
|
public getQueryActions(): IAIFunctionDefinition[] {
|
|
return [ListVaultFiles];
|
|
}
|
|
} |