Álvaro Valenzuela Valdes commited on
Commit
3272da1
·
1 Parent(s): 7d90b49

feat: Update to Gemini 2.5 Flash for 2026 API compatibility

Browse files
Files changed (1) hide show
  1. backend/app/config.py +1 -1
backend/app/config.py CHANGED
@@ -4,7 +4,7 @@ from pydantic_settings import BaseSettings
4
  class Settings(BaseSettings):
5
  mercado_publico_ticket: str | None = None
6
  gemini_api_key: str | None = None
7
- gemini_model: str = "gemini-pro"
8
  next_public_api_base: str | None = None
9
  database_url: str | None = None
10
 
 
4
  class Settings(BaseSettings):
5
  mercado_publico_ticket: str | None = None
6
  gemini_api_key: str | None = None
7
+ gemini_model: str = "gemini-2.5-flash"
8
  next_public_api_base: str | None = None
9
  database_url: str | None = None
10