Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +2 -1
templates/index.html
CHANGED
@@ -194,7 +194,8 @@
|
|
194 |
<div class="form-group">
|
195 |
<label for="model_name"><i class="fas fa-brain"></i>AI Model</label>
|
196 |
<select id="model_name" name="model_name">
|
197 |
-
<option value="gemini-2.5-flash
|
|
|
198 |
</select>
|
199 |
<small>Choose the AI editing model.</small>
|
200 |
</div>
|
|
|
194 |
<div class="form-group">
|
195 |
<label for="model_name"><i class="fas fa-brain"></i>AI Model</label>
|
196 |
<select id="model_name" name="model_name">
|
197 |
+
<option value="gemini-2.5-flash" {% if default_model == 'gemini-2.5-flash' %}selected{% endif %}>gemini-2.5-flash</option>
|
198 |
+
<option value="gemini-2.5-pro" {% if default_model == 'gemini-2.5-pro' %}selected{% endif %}>gemini-2.5-pro</option>
|
199 |
</select>
|
200 |
<small>Choose the AI editing model.</small>
|
201 |
</div>
|