summaryrefslogtreecommitdiffhomepage
path: root/internal/llm/models/models.go
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-04-19 15:15:29 +0200
committerKujtim Hoxha <[email protected]>2025-04-21 13:42:29 +0200
commit2b5a33e476ae3c6b5c6345777d20792786836dda (patch)
treeca22c0a7d6c8f73a21e2b67f31b927b7df187d4d /internal/llm/models/models.go
parentbf8cd3bd128d97cf93fcd1481c37db0e46945fd2 (diff)
downloadopencode-2b5a33e476ae3c6b5c6345777d20792786836dda.tar.gz
opencode-2b5a33e476ae3c6b5c6345777d20792786836dda.zip
lsp improvements
Diffstat (limited to 'internal/llm/models/models.go')
-rw-r--r--internal/llm/models/models.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/internal/llm/models/models.go b/internal/llm/models/models.go
index aba4a10c3..cccbd2765 100644
--- a/internal/llm/models/models.go
+++ b/internal/llm/models/models.go
@@ -23,9 +23,6 @@ type Model struct {
// Model IDs
const ( // GEMINI
- GEMINI25 ModelID = "gemini-2.5"
- GRMINI20Flash ModelID = "gemini-2.0-flash"
-
// GROQ
QWENQwq ModelID = "qwen-qwq"
@@ -35,7 +32,6 @@ const ( // GEMINI
const (
ProviderBedrock ModelProvider = "bedrock"
- ProviderGemini ModelProvider = "gemini"
ProviderGROQ ModelProvider = "groq"
// ForTests
@@ -95,4 +91,5 @@ var SupportedModels = map[ModelID]Model{
func init() {
maps.Copy(SupportedModels, AnthropicModels)
maps.Copy(SupportedModels, OpenAIModels)
+ maps.Copy(SupportedModels, GeminiModels)
}