We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f398eaa commit d44faf1Copy full SHA for d44faf1
1 file changed
backend/src/ai/providers/gemini.ts
@@ -1,13 +1,12 @@
1
import { GoogleGenAI } from "@google/genai";
2
3
-import { env } from "process";
4
import { getAIGatewayUrl } from "../utils/ai-gateway";
5
6
// Extended Env to include Gemini secrets and optional model config
7
type GeminiEnv = Env;
8
9
// Default Configuration
10
-export const DEFAULT_GEMINI_MODEL = env.GEMINI_MODEL || "gemini-2.5-pro";
+export const DEFAULT_GEMINI_MODEL = "gemini-2.5-pro";
11
12
/**
13
* Initialize Gemini Client using Cloudflare AI Gateway
0 commit comments