JeCabrera commited on
Commit
a6b1c0c
·
verified ·
1 Parent(s): b7da667

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ load_dotenv()
17
 
18
  # Configure Google Gemini API
19
  genai.configure(api_key=os.getenv('GOOGLE_API_KEY'))
20
- model = genai.GenerativeModel('gemini-1.5-flash') # Updated to model that supports images
21
 
22
  # Initialize session state variables if they don't exist
23
  if 'submitted' not in st.session_state:
 
17
 
18
  # Configure Google Gemini API
19
  genai.configure(api_key=os.getenv('GOOGLE_API_KEY'))
20
+ model = genai.GenerativeModel('gemini-2.0-flash') # Updated to model that supports images
21
 
22
  # Initialize session state variables if they don't exist
23
  if 'submitted' not in st.session_state: