fix(all): TRUE multicloud.
This commit is contained in:
parent
45eb9fab3c
commit
0ef823c259
2 changed files with 3 additions and 2 deletions
3
boot.mjs
3
boot.mjs
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/env node
|
#!/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 Fs from 'fs';
|
||||||
import os from 'node:os';
|
import os from 'node:os';
|
||||||
import Path from 'path';
|
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.
|
// 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...`);
|
console.log(`\nLoading virtual machine source code files...`);
|
||||||
|
|
||||||
var __dirname = process.env.PWD || process.cwd();
|
var __dirname = process.env.PWD || process.cwd();
|
||||||
|
|
|
@ -476,7 +476,7 @@ export class ChatServices {
|
||||||
});
|
});
|
||||||
} else if (LLMMode === 'sql') {
|
} else if (LLMMode === 'sql') {
|
||||||
const con = min[`llm`];
|
const con = min[`llm`];
|
||||||
|
|
||||||
const dialect = con['storageDriver'];
|
const dialect = con['storageDriver'];
|
||||||
const host = con['storageServer'];
|
const host = con['storageServer'];
|
||||||
const port = con['storagePort'];
|
const port = con['storagePort'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue