feat: opencode go provider list (#15203)

This commit is contained in:
David Hill
2026-02-26 14:37:33 +00:00
committed by GitHub
parent bb8a1718a6
commit 7453e78b35
21 changed files with 77 additions and 5 deletions

View File

@@ -3,7 +3,16 @@ import { decode64 } from "@/utils/base64"
import { useParams } from "@solidjs/router"
import { createMemo } from "solid-js"
export const popularProviders = ["opencode", "anthropic", "github-copilot", "openai", "google", "openrouter", "vercel"]
export const popularProviders = [
"opencode",
"opencode-go",
"anthropic",
"github-copilot",
"openai",
"google",
"openrouter",
"vercel",
]
const popularProviderSet = new Set(popularProviders)
export function useProviders() {