mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 16:30:27 +00:00
10 lines
No EOL
285 B
TypeScript
10 lines
No EOL
285 B
TypeScript
// platform agnostic function definition used to present function calls in an API call
|
|
export interface IAIFunctionDefinition {
|
|
name: string;
|
|
description: string;
|
|
parameters: {
|
|
type: string;
|
|
properties: Record<string, any>;
|
|
required?: string[];
|
|
};
|
|
} |