Skip to content

Commit 420438f

Browse files
authored
Merge pull request #79 from micr0-dev/pkg-updates-1
version num
2 parents ce7d183 + ad4cd2a commit 420438f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
)
4646

4747
// Version of the bot
48-
const Version = "2.1.3"
48+
const Version = "2.2"
4949

5050
// AsciiArt is the ASCII art for the bot
5151
const AsciiArt = ` _ _ _ _ _
@@ -1971,7 +1971,7 @@ func getProviderAttribution(config Config, lang string) string {
19711971
modelName := config.TransformersServerArgs.Model
19721972
modelInfo = strings.Split(modelName, "/")[1] // Just use the model name without path
19731973
} else {
1974-
modelInfo = cases.Title(language.Und).String(strings.Split(config.LLM.OllamaModel, ":")[0]) + strings.Split(strings.Split(config.LLM.OllamaModel, ":")[1], "-")[0]
1974+
modelInfo = cases.Title(language.Und).String(strings.Split(config.LLM.OllamaModel, ":")[0]) + ":" + strings.Split(strings.Split(config.LLM.OllamaModel, ":")[1], "-")[0]
19751975
}
19761976

19771977
case "gemini":

0 commit comments

Comments
 (0)