@exulu/backend 3.7.0 → 3.7.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.
|
@@ -96,6 +96,9 @@ var spawnLiteLLM = (cfg) => {
|
|
|
96
96
|
...rest,
|
|
97
97
|
DEBUG: "false"
|
|
98
98
|
};
|
|
99
|
+
if (!process.env.DISABLE_SCHEMA_UPDATE) {
|
|
100
|
+
childEnv.DISABLE_SCHEMA_UPDATE = "true";
|
|
101
|
+
}
|
|
99
102
|
if (LITELLM_UI_PATH && !process.env.SERVER_ROOT_PATH) {
|
|
100
103
|
childEnv.SERVER_ROOT_PATH = LITELLM_UI_PATH;
|
|
101
104
|
}
|
|
@@ -1713,7 +1716,7 @@ var ExuluTool = class _ExuluTool {
|
|
|
1713
1716
|
if (!agent) {
|
|
1714
1717
|
throw new Error("Agent not found.");
|
|
1715
1718
|
}
|
|
1716
|
-
const { convertExuluToolsToAiSdkTools: convertExuluToolsToAiSdkTools2 } = await import("./convert-exulu-tools-to-ai-sdk-tools-
|
|
1719
|
+
const { convertExuluToolsToAiSdkTools: convertExuluToolsToAiSdkTools2 } = await import("./convert-exulu-tools-to-ai-sdk-tools-UQSLJDXE.js");
|
|
1717
1720
|
const tools = await convertExuluToolsToAiSdkTools2(
|
|
1718
1721
|
[this],
|
|
1719
1722
|
[],
|
package/dist/index.cjs
CHANGED
|
@@ -1347,6 +1347,9 @@ var init_supervisor = __esm({
|
|
|
1347
1347
|
...rest,
|
|
1348
1348
|
DEBUG: "false"
|
|
1349
1349
|
};
|
|
1350
|
+
if (!process.env.DISABLE_SCHEMA_UPDATE) {
|
|
1351
|
+
childEnv.DISABLE_SCHEMA_UPDATE = "true";
|
|
1352
|
+
}
|
|
1350
1353
|
if (LITELLM_UI_PATH && !process.env.SERVER_ROOT_PATH) {
|
|
1351
1354
|
childEnv.SERVER_ROOT_PATH = LITELLM_UI_PATH;
|
|
1352
1355
|
}
|
package/dist/index.js
CHANGED