@budibase/pro 3.27.5 → 3.28.1

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.
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "dist"
5
5
  ],
6
6
  "license": "UNLICENSED",
7
- "version": "3.27.5",
7
+ "version": "3.28.1",
8
8
  "description": "Budibase Pro (Backend)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",
@@ -71,5 +71,5 @@
71
71
  }
72
72
  }
73
73
  },
74
- "gitHead": "46316dfbbf8e41a547bc8a4977ccd819a7515b9a"
74
+ "gitHead": "e034f570c9fbb13b51fa2178e74764b1c3182761"
75
75
  }
@@ -1,19 +0,0 @@
1
- import { LLMConfigOptions } from "@budibase/types";
2
- import { OpenAI } from "./openai";
3
- import { default as OpenAIClient } from "openai";
4
- type LiteLLMOpenAIConfig = {
5
- apiKey: string;
6
- baseUrl: string;
7
- sessionId?: string;
8
- };
9
- export declare class LiteLLMAI extends OpenAI {
10
- protected getClient(opts: LLMConfigOptions): OpenAIClient;
11
- }
12
- export declare const getLiteLLMProvider: (modelId: string) => string;
13
- export declare const getLiteLLMProviderOptions: (hasTools: boolean) => {
14
- openai: {
15
- parallelToolCalls: boolean;
16
- };
17
- } | undefined;
18
- export declare const createLiteLLMOpenAI: (config: LiteLLMOpenAIConfig) => import("@ai-sdk/openai").OpenAIProvider;
19
- export {};