From 560a96161f37734c37dad4e2b1aeade39e7cd7f6 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Wed, 15 May 2024 14:38:20 -0400 Subject: milla can run more than one instance of itself --- config-example.toml | 61 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 19 deletions(-) (limited to 'config-example.toml') diff --git a/config-example.toml b/config-example.toml index 9a5a56e..60f32a4 100644 --- a/config-example.toml +++ b/config-example.toml @@ -1,33 +1,56 @@ -ircServer = "irc.libera.caht" +[ircd.devinet] +ircServer = "irc.myawesomeircnet.com" +ircPort = 6697 ircNick = "milla" -ircSaslUser = "" -ircSaslPass = "" -ollamaEndpoint = "http://127.0.0.1:11434/api/chat" -model = "ollama2-uncensored" -chromaStyle = "monokai" +enableSasl = true +ircSaslUser = "milla" +ircSaslPass = "xxxxx" +ircChannels = ["##chan1", "##chan2"] +temp = 0.2 +requestTimeout = 10 +millaReconnectDelay = 60 +model = "gpt-3.5-turbo" +chromaStyle = "rose-pine-moon" +chromaFormatter = "terminal256" +provider = "chatgpt" +apikey = "xxxx" +memoryLimit = 20 +admins = ["noone_has_this_nick"] +debug = true +out = true +databaseAddress = "postgres:5432" +databasePassword = "changeme" +databaseUser = "devi" +databaseName = "milla" +scrapeChannels = ["#soulhack", "#warroom"] +ircProxy = "socks5://127.0.0.1:9050" +llmProxy = "http://127.0.0.1:8180" +skipTLSVerify = false +useTLS = true + +[ircd.liberanet] +ircServer = "irc.libera.chat" +ircNick = "milla" +model = "gpt-3.5-turbo" +ircPort = 6697 +chromaStyle = "rose-pine-moon" chromaFormatter = "terminal16m" -provider = "ollama" -apikey = "xxx" -ollamaSystem = "" -clientCertPath = "" -serverPass = "" -bind = "" +provider = "gemini" +apikey = "xxxx" temp = 0.5 requestTimeout = 10 millaReconnectDelay = 60 -ircPort = 6669 keepAlive = 20 memoryLimit = 20 pingDelay = 20 pingTimeout = 600 -topP = 0.9 -topK = 0 -enableSasl = false skipTLSVerify = false useTLS = true disableSTSFallback = true allowFlood = false -debug = false -out = false -admins = ["nick1", "nick2"] +admins = ["noone_has_this_nick"] ircChannels = ["##milla1", "##milla2"] +debug = true +out = true +ircProxy = "socks5://127.0.0.1:9051" +llmProxy = "http://127.0.0.1:8181" -- cgit v1.2.3