SolarumAsteridion commited on
Commit
3c4462d
·
verified ·
1 Parent(s): da9646f

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +8 -13
templates/index.html CHANGED
@@ -191,19 +191,14 @@
191
  </div>
192
  <small>Mute source audio / Generate low-res preview first.</small>
193
  </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
- {% if available_models %}
198
- {% for model in available_models %}
199
- <option value="{{ model }}" {% if model == default_model %}selected{% endif %}>{{ model }}</option>
200
- {% endfor %}
201
- {% else %}
202
- <option value="{{ default_model | escape }}" selected>{{ default_model | escape }}</option>
203
- {% endif %}
204
- </select>
205
- <small>Choose the AI editing model.</small>
206
- </div>
207
  <div class="form-group form-group-span-full">
208
  <label for="style_desc"><i class="fas fa-pen-alt"></i>Style Description</label>
209
  <textarea id="style_desc" name="style_desc" rows="2" required placeholder="Describe desired style, pacing, mood, effects, etc. Defaults to Instagram Reel style if left blank.">{{ default_style_desc | escape }}</textarea>
 
191
  </div>
192
  <small>Mute source audio / Generate low-res preview first.</small>
193
  </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-preview-04-17" {% if default_model == 'gemini-2.5-flash-preview-04-17' %}selected{% endif %}>gemini-2.5-flash-preview-04-17</option>
198
+ <option value="gemini-2.5-pro-exp-03-25" {% if default_model == 'gemini-2.5-pro-exp-03-25' %}selected{% endif %}>gemini-2.5-pro-exp-03-25</option>
199
+ </select>
200
+ <small>Choose the AI editing model.</small>
201
+ </div>
 
 
 
 
 
202
  <div class="form-group form-group-span-full">
203
  <label for="style_desc"><i class="fas fa-pen-alt"></i>Style Description</label>
204
  <textarea id="style_desc" name="style_desc" rows="2" required placeholder="Describe desired style, pacing, mood, effects, etc. Defaults to Instagram Reel style if left blank.">{{ default_style_desc | escape }}</textarea>