mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-03 15:23:30 +08:00
19 lines
380 B
Go
19 lines
380 B
Go
package consts
|
|
|
|
type ModelStatus string
|
|
|
|
const (
|
|
ModelStatusActive ModelStatus = "active"
|
|
ModelStatusInactive ModelStatus = "inactive"
|
|
)
|
|
|
|
type ModelType string
|
|
|
|
const (
|
|
ModelTypeLLM ModelType = "llm"
|
|
ModelTypeCoder ModelType = "coder"
|
|
ModelTypeEmbedding ModelType = "embedding"
|
|
ModelTypeAudio ModelType = "audio"
|
|
ModelTypeReranker ModelType = "reranker"
|
|
)
|