mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
feat: add 'copilot' to ai_provider_type (#25616)
This commit is contained in:
@@ -27,6 +27,7 @@ const (
|
||||
AiProviderTypeOpenaiCompat AIProviderType = "openai-compat"
|
||||
AiProviderTypeOpenrouter AIProviderType = "openrouter"
|
||||
AiProviderTypeVercel AIProviderType = "vercel"
|
||||
AiProviderTypeCopilot AIProviderType = "copilot"
|
||||
)
|
||||
|
||||
func (e *AIProviderType) Scan(src interface{}) error {
|
||||
@@ -73,7 +74,8 @@ func (e AIProviderType) Valid() bool {
|
||||
AiProviderTypeGoogle,
|
||||
AiProviderTypeOpenaiCompat,
|
||||
AiProviderTypeOpenrouter,
|
||||
AiProviderTypeVercel:
|
||||
AiProviderTypeVercel,
|
||||
AiProviderTypeCopilot:
|
||||
return true
|
||||
}
|
||||
return false
|
||||
@@ -89,6 +91,7 @@ func AllAIProviderTypeValues() []AIProviderType {
|
||||
AiProviderTypeOpenaiCompat,
|
||||
AiProviderTypeOpenrouter,
|
||||
AiProviderTypeVercel,
|
||||
AiProviderTypeCopilot,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user