Merge pull request #1149 from pipecat-ai/mb/update-google-default-llm-model

Use gemini-2.0-flash-001 as the default model for GoogleLLMService
This commit is contained in:
Mark Backman
2025-02-06 12:41:13 -05:00
committed by GitHub
8 changed files with 14 additions and 24 deletions

View File

@@ -639,7 +639,7 @@ class GoogleLLMService(LLMService):
self,
*,
api_key: str,
model: str = "gemini-1.5-flash-latest",
model: str = "gemini-2.0-flash-001",
params: InputParams = InputParams(),
system_instruction: Optional[str] = None,
tools: Optional[List[Dict[str, Any]]] = None,