nginx-ui/internal/llm/errors.go
2025-04-16 07:50:23 +00:00

10 lines
195 B
Go

package llm
import (
"github.com/uozi-tech/cosy"
)
var (
e = cosy.NewErrorScope("llm")
ErrCodeCompletionNotEnabled = e.New(400, "code completion is not enabled")
)