mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
1) Security update: https://github.com/TavernAI/TavernAI/security/advisories/GHSA-25wp-82wc-xchj 2) Fixed several bugs related to character import: now all imported characters are added to the top of the list. 3) Fixed a bug that duplicated character cards if the character name and map name did not match. 4) Made minor fixes for prompt formatting. 5) Added the ability to enable/disable TavernAI autostart in the browser through the configuration file. 6) Adapted for Pygmalion Dev.
8 lines
331 B
Plaintext
8 lines
331 B
Plaintext
const port = 8000;
|
|
const whitelist = ['127.0.0.1']; //Example for add several IP in whitelist: ['127.0.0.1', '192.168.0.10']
|
|
const whitelistMode = true; //Disabling enabling the ip whitelist mode. true/false
|
|
const autorun = true; //Autorun in the browser. true/false
|
|
|
|
module.exports = {
|
|
port, whitelist, whitelistMode, autorun
|
|
}; |