@@ -39,8 +39,7 @@ import (
3939)
4040
4141// Version of the bot
42-
43- const Version = "1.4.3"
42+ const Version = "1.4.4"
4443
4544// AsciiArt is the ASCII art for the bot
4645const AsciiArt = ` _ _ _ ___ _
@@ -57,8 +56,9 @@ type Config struct {
5756 Username string `toml:"username"`
5857 } `toml:"server"`
5958 LLM struct {
60- Provider string `toml:"provider"`
61- OllamaModel string `toml:"ollama_model"`
59+ Provider string `toml:"provider"`
60+ OllamaModel string `toml:"ollama_model"`
61+ PromptOverride string `toml:"prompt_override"`
6262 } `toml:"llm"`
6363 Gemini struct {
6464 Model string `toml:"model"`
@@ -215,6 +215,14 @@ func main() {
215215 fmt .Printf ("%s Mastodon Connection: %s\n " , getStatusSymbol (true ), config .Server .MastodonServer )
216216 fmt .Printf ("%s Video/Audio Processing: %v\n " , getStatusSymbol (videoAudioProcessingCapability ), videoAudioProcessingCapability )
217217
218+ PromptOverrideState = config .LLM .PromptOverride != ""
219+
220+ if PromptOverrideState {
221+ fmt .Printf ("%s Prompt Override: Set to \" %.30s...\" \n " , getStatusSymbol (false ), config .LLM .PromptOverride )
222+ } else {
223+ fmt .Printf ("%s Default Prompts: %s\n " , getStatusSymbol (true ), "Loaded" )
224+ }
225+
218226 // Set up Gemini AI model
219227 err = Setup (config .Gemini .APIKey )
220228 if err != nil {
0 commit comments