GoogleLLMService: update default model to gemini-2.5-flash

This commit is contained in:
Aleix Conchillo Flaqué
2025-10-05 21:37:37 -07:00
parent fe168e3c68
commit 312959f97e
2 changed files with 5 additions and 1 deletions

View File

@@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `hume` optional dependency group for Hume AI TTS integration.
### Changed
- Updated default `GoogleLLMService` model to `gemini-2.5-flash`.
### Fixed
- Fixed RTVI incoming message handling, broken in 0.0.87.

View File

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