Alibrown commited on
Commit
f1ec6da
·
verified ·
1 Parent(s): 62f127e

Rename backup_2025_app.py to app.py

Browse files
Files changed (1) hide show
  1. backup_2025_app.py → app.py +3 -9
backup_2025_app.py → app.py RENAMED
@@ -83,16 +83,10 @@ def process_file(uploaded_file):
83
  with st.sidebar:
84
  api_key = st.text_input("Google AI API Key", type="password")
85
  model = st.selectbox("Model", [
86
- "gemini-1.5-flash",
 
 
87
  "gemini-1.5-pro",
88
- "gemini-1.5-pro-vision-latest", # Vision-Modell für Bilder
89
- "gemini-1.0-pro",
90
- "gemini-1.0-pro-vision-latest", # Vision-Modell für Bilder
91
- "gemini-2.0-pro-exp-02-05",
92
- "gemini-2.0-flash-lite",
93
- "gemini-2.0-flash-exp-image-generation", # Vision-Modell für Bilder
94
- "gemini-2.0-flash",
95
- "gemini-2.0-flash-thinking-exp-01-21"
96
  ])
97
  temperature = st.slider("Temperature", 0.0, 1.0, 0.7)
98
  max_tokens = st.slider("Max Tokens", 1, 100000, 1000)
 
83
  with st.sidebar:
84
  api_key = st.text_input("Google AI API Key", type="password")
85
  model = st.selectbox("Model", [
86
+ "gemini-2.5-flash",
87
+ "gemini-2.5-pro",
88
+ "gemini-1.5-flash",
89
  "gemini-1.5-pro",
 
 
 
 
 
 
 
 
90
  ])
91
  temperature = st.slider("Temperature", 0.0, 1.0, 0.7)
92
  max_tokens = st.slider("Max Tokens", 1, 100000, 1000)