Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -666,12 +666,12 @@ HTML_CONTENT = """<!DOCTYPE html>
|
|
666 |
</div>
|
667 |
|
668 |
<div class="tabs-container">
|
669 |
-
<button class="tab-button active" onclick="switchTab('voice-chat')">์์ฑ ์ฑํ
</button>
|
670 |
-
<button class="tab-button" onclick="switchTab('mic-whisper')">๋ง์ดํฌ ์ ์ฌ</button>
|
671 |
-
<button class="tab-button" onclick="switchTab('audio-whisper')">์ค๋์ค ํ์ผ</button>
|
672 |
-
<button class="tab-button" onclick="switchTab('video-whisper')">๋น๋์ค ํ์ผ</button>
|
673 |
-
<button class="tab-button" onclick="switchTab('pdf-whisper')">PDF ๋ฒ์ญ</button>
|
674 |
-
<button class="tab-button" onclick="switchTab('realtime-whisper')">์ค์๊ฐ ํต์ญ</button>
|
675 |
</div>
|
676 |
|
677 |
<!-- Voice Chat Tab (Original) -->
|
@@ -860,7 +860,7 @@ HTML_CONTENT = """<!DOCTYPE html>
|
|
860 |
|
861 |
<script>
|
862 |
// Tab switching functionality
|
863 |
-
function switchTab(tabName) {
|
864 |
// Hide all tabs
|
865 |
const tabs = document.querySelectorAll('.tab-content');
|
866 |
tabs.forEach(tab => tab.classList.remove('active'));
|
|
|
666 |
</div>
|
667 |
|
668 |
<div class="tabs-container">
|
669 |
+
<button class="tab-button active" onclick="switchTab(event, 'voice-chat')">์์ฑ ์ฑํ
</button>
|
670 |
+
<button class="tab-button" onclick="switchTab(event, 'mic-whisper')">๋ง์ดํฌ ์ ์ฌ</button>
|
671 |
+
<button class="tab-button" onclick="switchTab(event, 'audio-whisper')">์ค๋์ค ํ์ผ</button>
|
672 |
+
<button class="tab-button" onclick="switchTab(event, 'video-whisper')">๋น๋์ค ํ์ผ</button>
|
673 |
+
<button class="tab-button" onclick="switchTab(event, 'pdf-whisper')">PDF ๋ฒ์ญ</button>
|
674 |
+
<button class="tab-button" onclick="switchTab(event, 'realtime-whisper')">์ค์๊ฐ ํต์ญ</button>
|
675 |
</div>
|
676 |
|
677 |
<!-- Voice Chat Tab (Original) -->
|
|
|
860 |
|
861 |
<script>
|
862 |
// Tab switching functionality
|
863 |
+
function switchTab(event, tabName) {
|
864 |
// Hide all tabs
|
865 |
const tabs = document.querySelectorAll('.tab-content');
|
866 |
tabs.forEach(tab => tab.classList.remove('active'));
|