From 0ef823c259d12bdd9b4beec1ed0f4ba887cdd043 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 26 Aug 2024 20:04:12 -0300 Subject: [PATCH] fix(all): TRUE multicloud. --- boot.mjs | 3 ++- packages/llm.gblib/services/ChatServices.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/boot.mjs b/boot.mjs index 94535ece..ec461521 100644 --- a/boot.mjs +++ b/boot.mjs @@ -1,5 +1,7 @@ #!/usr/bin/env node +process.stdout.write(`General Bots. BotServer@${pjson.version}, botlib@${pjson.dependencies.botlib}, node@${process.version.replace('v', '')}, ${process.platform} ${process.arch} `); + import Fs from 'fs'; import os from 'node:os'; import Path from 'path'; @@ -9,7 +11,6 @@ import pjson from './package.json' assert { type: 'json' }; // Displays version of Node JS being used at runtime and others attributes. -process.stdout.write(`General Bots. BotServer@${pjson.version}, botlib@${pjson.dependencies.botlib}, node@${process.version.replace('v', '')}, ${process.platform} ${process.arch} `); console.log(`\nLoading virtual machine source code files...`); var __dirname = process.env.PWD || process.cwd(); diff --git a/packages/llm.gblib/services/ChatServices.ts b/packages/llm.gblib/services/ChatServices.ts index 728041f2..145ec799 100644 --- a/packages/llm.gblib/services/ChatServices.ts +++ b/packages/llm.gblib/services/ChatServices.ts @@ -476,7 +476,7 @@ export class ChatServices { }); } else if (LLMMode === 'sql') { const con = min[`llm`]; - + const dialect = con['storageDriver']; const host = con['storageServer']; const port = con['storagePort'];