13 lines
128 B
Go
13 lines
128 B
Go
package models
|
|
|
|
const (
|
|
LoadedMark = "(loaded) "
|
|
)
|
|
|
|
type APIType int
|
|
|
|
const (
|
|
APITypeChat APIType = iota
|
|
APITypeCompletion
|
|
)
|