mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
367 B
Go
11 lines
367 B
Go
package ai
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
var (
|
|
// ErrProviderNotFound indicates that a requested provider ID does not exist.
|
|
ErrProviderNotFound = errors.New("AI provider not found")
|
|
// ErrCapabilityUnsupported indicates that the provider does not support the requested capability.
|
|
ErrCapabilityUnsupported = errors.New("AI provider capability unsupported")
|
|
)
|