summaryrefslogtreecommitdiff
path: root/models/consts.go
blob: 14f1a49c090f690aaed19715726ad28a625b6037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package models

const (
	LoadedMark        = "(loaded) "
	ToolRespMultyType = "multimodel_content"
	DefaultFirstMsg   = "Hello! What can I do for you?"
	BasicSysMsg       = "Large Language Model that helps user with any of his requests."
)

type APIType int

const (
	APITypeChat APIType = iota
	APITypeCompletion
)