Skip to content

Commit 72b8c79

Browse files
committed
Update provider-settings.ts
1 parent 911755d commit 72b8c79

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/types/src/provider-settings.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export const getModelId = (settings: ProviderSettings): string | undefined => {
455455
}
456456

457457
// Providers that use Anthropic-style API protocol.
458-
export const ANTHROPIC_STYLE_PROVIDERS: ProviderName[] = ["anthropic", "claude-code", "bedrock"]
458+
export const ANTHROPIC_STYLE_PROVIDERS: ProviderName[] = ["anthropic", "claude-code", "bedrock"];
459459

460460
export const getApiProtocol = (provider: ProviderName | undefined, modelId?: string): "anthropic" | "openai" => {
461461
if (provider && ANTHROPIC_STYLE_PROVIDERS.includes(provider)) {
@@ -475,9 +475,10 @@ export const getApiProtocol = (provider: ProviderName | undefined, modelId?: str
475475
}
476476

477477
export const MODELS_BY_PROVIDER: Record<
478-
Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">,
479-
{ id: ProviderName; label: string; models: string[] }
478+
Exclude<ProviderName, "fake-ai" | "human-relay" | "gemini-cli" | "lmstudio" | "openai" | "ollama">,
479+
{ id: ProviderName; label: string; models: string[] }
480480
> = {
481+
"g-cli": { id: "g-cli", label: "G CLI", models: [] },
481482
anthropic: {
482483
id: "anthropic",
483484
label: "Anthropic",

0 commit comments

Comments
 (0)