sdafd commited on
Commit
d424741
·
verified ·
1 Parent(s): badf4d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -7,6 +7,9 @@ import textract
7
 
8
  # List of available models (including experimental and recent ones)
9
  models = [
 
 
 
10
  "gemini-2.5-flash",
11
  "gemini-2.5-pro",
12
  "gemini-2.0-flash-exp-image-generation"
@@ -15,6 +18,9 @@ models = [
15
  # Model types for handling inputs
16
  model_types = {
17
  "gemini-2.5-flash": "text",
 
 
 
18
  "gemini-2.5-pro": "text",
19
  "gemini-2.0-flash-exp-image-generationn": "multimodal"
20
  }
 
7
 
8
  # List of available models (including experimental and recent ones)
9
  models = [
10
+ "gemini-3-flash-preview",
11
+ "gemini-flash-latest",
12
+ "gemini-flash-lite-latest",
13
  "gemini-2.5-flash",
14
  "gemini-2.5-pro",
15
  "gemini-2.0-flash-exp-image-generation"
 
18
  # Model types for handling inputs
19
  model_types = {
20
  "gemini-2.5-flash": "text",
21
+ "gemini-3-flash-preview": "text",
22
+ "gemini-flash-latest": "text",
23
+ "gemini-flash-lite-latest": "text",
24
  "gemini-2.5-pro": "text",
25
  "gemini-2.0-flash-exp-image-generationn": "multimodal"
26
  }