@budibase/pro 3.34.6 → 3.34.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,13 @@ export declare function summarizeText(text: string, length?: SummariseLength): L
9
9
  export declare function classifyText(text: string, categories: string[]): LLMRequest;
10
10
  export declare function cleanData(text: string): LLMRequest;
11
11
  export declare function generateCronExpression(text: string): LLMRequest;
12
+ interface GenerateAgentInstructionsOptions {
13
+ prompt: string;
14
+ agentName?: string;
15
+ goal?: string;
16
+ toolReferences: string[];
17
+ }
18
+ export declare function generateAgentInstructionsPrompt({ prompt, agentName, goal, toolReferences, }: GenerateAgentInstructionsOptions): LLMRequest;
12
19
  export declare function translate(text: string, language: string): LLMRequest;
13
20
  export declare function sentimentAnalysis(text: string): LLMRequest;
14
21
  export declare function searchWeb(text: string): LLMRequest;
@@ -20,3 +27,4 @@ export declare function composeAutomationAgentSystemPrompt(options: AgentPromptO
20
27
  export declare function composeAutomationAgentToolGuidelines(guidelines: AutomationAgentToolGuideline[]): string;
21
28
  export declare function agentSystemPrompt(user: ContextUser): string;
22
29
  export declare function agentHistoryTitleSystemPrompt(): string;
30
+ export {};