From a796a444213534e96f193467cbc6d9eabda9ca39 Mon Sep 17 00:00:00 2001 From: Ramnique Singh <30795890+ramnique@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:44:34 +0530 Subject: [PATCH] fix google base url --- apps/cli/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/src/app.ts b/apps/cli/src/app.ts index 4d1eea3b..a45bf84e 100644 --- a/apps/cli/src/app.ts +++ b/apps/cli/src/app.ts @@ -227,7 +227,7 @@ export async function modelConfig() { const defaultBaseUrls: Record<(typeof flavors)[number], string> = { openai: "https://api.openai.com/v1", anthropic: "https://api.anthropic.com/v1", - google: "https://generativelanguage.googleapis.com", + google: "https://generativelanguage.googleapis.com/v1beta", ollama: "http://localhost:11434", "openai-compatible": "http://localhost:8080/v1", openrouter: "https://openrouter.ai/api/v1",