Use gemini-2.0-flash-001 as the default model for GoogleLLMService

This commit is contained in:
Mark Backman
2025-02-06 10:23:33 -05:00
parent dbcf14ddb4
commit 4904f52cee
8 changed files with 14 additions and 24 deletions

View File

@@ -62,11 +62,7 @@ async def main():
voice_id="79a125e8-cd45-4c13-8a67-188112f4dd22", # British Lady
)
llm = GoogleLLMService(
model="gemini-1.5-flash-latest",
# model="gemini-exp-1114",
api_key=os.getenv("GOOGLE_API_KEY"),
)
llm = GoogleLLMService(api_key=os.getenv("GOOGLE_API_KEY"), model="gemini-2.0-flash-001")
llm.register_function("get_weather", get_weather)
llm.register_function("get_image", get_image)