summaryrefslogtreecommitdiff
path: root/models/consts.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 /models/consts.go
parent1f112259d2ff58bbe25f25f8c65694d5a7569e68 (diff)
Enha (llama.cpp): show loaded model on startup
Diffstat (limited to 'models/consts.go')
-rw-r--r--models/consts.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/models/consts.go b/models/consts.go
new file mode 100644
index 0000000..4f61435
--- /dev/null
+++ b/models/consts.go
@@ -0,0 +1,12 @@
+package models
+
+const (
+ LoadedMark = "(loaded) "
+)
+
+type APIType int
+
+const (
+ APITypeChat APIType = iota
+ APITypeCompletion
+)