summaryrefslogtreecommitdiff
path: root/helpfuncs.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2026-03-01 08:22:02 +0300
committerGrail Finder <wohilas@gmail.com>2026-03-01 08:22:02 +0300
commitcdfccf9a2440dc4d8094e7ae94aa85cb446e7cfb (patch)
tree43658a89dd2fbd89106cf58c6a4a48792f4f97ac /helpfuncs.go
parent1f112259d2ff58bbe25f25f8c65694d5a7569e68 (diff)
Enha (llama.cpp): show loaded model on startup
Diffstat (limited to 'helpfuncs.go')
-rw-r--r--helpfuncs.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/helpfuncs.go b/helpfuncs.go
index b8b7251..b63995c 100644
--- a/helpfuncs.go
+++ b/helpfuncs.go
@@ -27,7 +27,6 @@ func startModelColorUpdater() {
go func() {
ticker := time.NewTicker(5 * time.Second)
defer ticker.Stop()
-
// Initial check
updateCachedModelColor()
for range ticker.C {
@@ -42,7 +41,6 @@ func updateCachedModelColor() {
cachedModelColor = "orange"
return
}
-
// Check if model is loaded
loaded, err := isModelLoaded(chatBody.Model)
if err != nil {