@budibase/pro 3.23.34 → 3.23.36

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.
@@ -1,5 +1,10 @@
1
1
  import { EnrichedBinding, Snippet, ContextUser, SummariseLength } from "@budibase/types";
2
2
  import { LLMRequest } from "../llm";
3
+ import { AgentPromptOptions } from "../../types";
4
+ export interface AutomationAgentToolGuideline {
5
+ toolName: string;
6
+ guidelines: string;
7
+ }
3
8
  export declare function summarizeText(text: string, length?: SummariseLength): LLMRequest;
4
9
  export declare function extractFileData(schema: Record<string, any>, fileIdOrDataUrl: string): LLMRequest;
5
10
  export declare function classifyText(text: string, categories: string[]): LLMRequest;
@@ -14,5 +19,7 @@ export declare function generateJs(bindings: EnrichedBinding[], snippets: Snippe
14
19
  export declare function generateTables(): LLMRequest;
15
20
  export declare function generateAIColumns(): LLMRequest;
16
21
  export declare function generateData(): LLMRequest;
22
+ export declare function composeAutomationAgentSystemPrompt(options: AgentPromptOptions): string;
23
+ export declare function composeAutomationAgentToolGuidelines(guidelines: AutomationAgentToolGuideline[]): string;
17
24
  export declare function agentSystemPrompt(user: ContextUser): string;
18
25
  export declare function agentHistoryTitleSystemPrompt(): string;