GamerC0der commited on
Commit
5cbfbc4
·
verified ·
1 Parent(s): 4739538

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,6 +26,7 @@ HTML = """
26
  <html>
27
  <head>
28
  <title>Multi-Modal Playground</title>
 
29
  </head>
30
  <body>
31
  <h1>Multi-Modal Playground</h1>
@@ -51,7 +52,7 @@ HTML = """
51
  <p>Status: <span id="statusChat">Idle</span></p>
52
 
53
  <h2>Voice Chat</h2>
54
- <button id="micBtn" onclick="toggleRecord()" style="font-size:48px;">🎤</button>
55
  <p>Status: <span id="statusVoice">Click to start recording</span></p>
56
  <audio id="voicePlayer" style="display:none;"></audio>
57
 
 
26
  <html>
27
  <head>
28
  <title>Multi-Modal Playground</title>
29
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
30
  </head>
31
  <body>
32
  <h1>Multi-Modal Playground</h1>
 
52
  <p>Status: <span id="statusChat">Idle</span></p>
53
 
54
  <h2>Voice Chat</h2>
55
+ <button id="micBtn" onclick="toggleRecord()" style="font-size:48px;"><i class="fas fa-microphone"></i></button>
56
  <p>Status: <span id="statusVoice">Click to start recording</span></p>
57
  <audio id="voicePlayer" style="display:none;"></audio>
58