76ba500417
CI / docker (push) Successful in 2m4s
OpenAI-compatible AI gateway with Vue admin UI, multi-provider egress, ingress key governance, monitoring, and security controls. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
317 B
Go
12 lines
317 B
Go
package gateway
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrModelNotAllowed = errors.New("model not allowed")
|
|
ErrBudgetExceeded = errors.New("budget exceeded")
|
|
ErrRateLimitExceeded = errors.New("rate limit exceeded")
|
|
ErrInvalidJSON = errors.New("invalid json")
|
|
ErrModelRequired = errors.New("model is required")
|
|
)
|