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.
21 lines
459 B
Go
21 lines
459 B
Go
package ai
|
|
|
|
// ProviderType identifies an AI provider implementation.
|
|
type ProviderType string
|
|
|
|
const (
|
|
// ProviderOpenAI is OpenAI's hosted API.
|
|
ProviderOpenAI ProviderType = "OPENAI"
|
|
// ProviderGemini is Google's Gemini API.
|
|
ProviderGemini ProviderType = "GEMINI"
|
|
)
|
|
|
|
// ProviderConfig configures a callable AI provider connection.
|
|
type ProviderConfig struct {
|
|
ID string
|
|
Title string
|
|
Type ProviderType
|
|
Endpoint string
|
|
APIKey string
|
|
}
|