iisadia commited on
Commit
aba451b
·
verified ·
1 Parent(s): a15329b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -24
app.py CHANGED
@@ -283,32 +283,20 @@ def show_techniques_modal():
283
  <button class="close-modal-btn" onclick="document.getElementById('infoBackdrop').style.display='none'">×</button>
284
  <h3 style="color: #6C63FF; margin-bottom: 1.5rem; text-align: center;">Project Techniques & Limitations</h3>
285
 
286
- <div class="tech-item">
287
- <div class="tech-title"><i class="fas fa-brain"></i> AI Models Used</div>
288
- <ul style="color: #64748B; padding-left: 1.2rem;">
289
- <li><strong>Groq Llama 3.3-70B</strong> - For generating strategic questions and final guesses</li>
290
- <li><strong>Mistral Tiny</strong> - Powers the help chat assistant</li>
291
- <li><strong>OpenAI Whisper</strong> - Converts speech to text in real-time</li>
292
- <li><strong>Hard Prompt Tuning</strong> - Carefully engineered prompts to optimize model performance</li>
293
- </ul>
294
- </div>
295
 
296
- <div class="tech-item">
297
- <div class="tech-title"><i class="fas fa-exclamation-triangle"></i> Known Limitations</div>
298
- <ul style="color: #64748B; padding-left: 1.2rem;">
299
- <li>Voice input may take 5-10 seconds to process sentences</li>
300
- <li>Single words (like "yes", "no") may take 10-20 seconds</li>
301
- <li><strong>Language Support</strong> - While Whisper understands Urdu, the game only supports English</li>
302
- </ul>
303
- </div>
304
 
305
- <div style="text-align: center; margin-top: 1.5rem;">
306
- <button onclick="document.getElementById('infoBackdrop').style.display='none'"
307
- style="background: #6C63FF; color: white; border: none; padding: 0.5rem 1.5rem; border-radius: 8px; cursor: pointer;">
308
- Got It!
309
- </button>
310
- </div>
311
- </div>
312
  </div>
313
  <script>
314
  document.getElementById('infoBackdrop').style.display = 'block';
 
283
  <button class="close-modal-btn" onclick="document.getElementById('infoBackdrop').style.display='none'">×</button>
284
  <h3 style="color: #6C63FF; margin-bottom: 1.5rem; text-align: center;">Project Techniques & Limitations</h3>
285
 
286
+ AI Models Used:
287
+ 1. Groq Llama 3.3-70B - For generating strategic questions and final guesses
288
+ 2. Mistral Tiny - Powers the help chat assistant
289
+ 3. OpenAI Whisper - Converts speech to text in real-time
290
+ 4. Hard Prompt Tuning - Carefully engineered prompts to optimize model performance
291
+
 
 
 
292
 
293
+ Known Limitations:
294
+ 1. Voice input may take 5-10 seconds to process sentences Which is fine.
295
+ 2. But Single words (like "yes", "object") may take 10-20 minutes, which is irritating.
296
+ 3. Language Support - While Whisper understands and write Urdu, but the game only supports English response
297
+
 
 
 
298
 
299
+
 
 
 
 
 
 
300
  </div>
301
  <script>
302
  document.getElementById('infoBackdrop').style.display = 'block';