diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b2469f..bc1172a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ concurrency: cancel-in-progress: true env: - GO_VERSION: "1.26.4" + GO_VERSION: "1.26.5" GOPRIVATE: "github.com/GrayCodeAI/*" GONOSUMDB: "github.com/GrayCodeAI/*" GONOSUMCHECK: "1" diff --git a/catalog/registry/providers.go b/catalog/registry/providers.go index 8df4979..98c3df1 100644 --- a/catalog/registry/providers.go +++ b/catalog/registry/providers.go @@ -174,7 +174,7 @@ func providerSpecs() []ProviderSpec { BaseURLEnv: []string{"POOLSIDE_BASE_URL", "OPENAI_BASE_URL", "OPENAI_API_BASE"}, ProbeKind: ProbeOpenAIModels, ProbeBaseURL: "https://inference.poolside.ai/v1", LiveFetcherKey: "poolside", LiveCatalogKey: "poolside", - APIProtocolID: "openai-chat-completions", AdapterID: "poolside", RuntimeProfileKey: "poolside", + ProtocolID: "openai-chat-completions", AdapterID: "poolside", RuntimeProfileKey: "poolside", }, { ProviderID: "groq", DisplayName: "Groq", DeploymentID: "groq-direct", SortOrder: 19, ChatPreference: 21, @@ -182,11 +182,7 @@ func providerSpecs() []ProviderSpec { BaseURLEnv: []string{"GROQ_BASE_URL", "OPENAI_BASE_URL", "OPENAI_API_BASE"}, ProbeKind: ProbeOpenAIModels, ProbeBaseURL: "https://api.groq.com/openai/v1", LiveFetcherKey: "groq", LiveCatalogKey: "groq", -<<<<<<< HEAD - APIProtocolID: "openai-chat-completions", AdapterID: "groq", RuntimeProfileKey: "groq", -======= ProtocolID: "openai-chat-completions", AdapterID: "groq", RuntimeProfileKey: "groq", ->>>>>>> origin/main }, { ProviderID: "clinepass", DisplayName: "ClinePass", DeploymentID: "clinepass", SortOrder: 20, ChatPreference: 22, @@ -194,11 +190,7 @@ func providerSpecs() []ProviderSpec { BaseURLEnv: []string{"CLINE_API_BASE", "OPENAI_BASE_URL", "OPENAI_API_BASE"}, ProbeKind: ProbeNone, LiveFetcherKey: "clinepass", LiveCatalogKey: "clinepass", -<<<<<<< HEAD - APIProtocolID: "openai-chat-completions", AdapterID: "clinepass", RuntimeProfileKey: "clinepass", -======= ProtocolID: "openai-chat-completions", AdapterID: "clinepass", RuntimeProfileKey: "clinepass", ->>>>>>> origin/main }, { ProviderID: "opencodego", DisplayName: "OpenCode Go", DeploymentID: "opencodego", SortOrder: 21, ChatPreference: 13, diff --git a/go.mod b/go.mod index 11e1f57..8d0204f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/GrayCodeAI/eyrie -go 1.26.4 +go 1.26.5 require ( github.com/google/uuid v1.6.0