Spaces:
Sleeping
Sleeping
File size: 16,754 Bytes
5c1a0cb 76ccddb 5c1a0cb b37c9b1 5c1a0cb 76ccddb 5c1a0cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 | """
app.py โ Interface Gradio pour le Voice Agent LiveKit
Dรฉmarre :
1. Le worker LiveKit agent (subprocess)
2. L'interface Gradio avec UI WebRTC
"""
import os
import sys
import json
import subprocess
import threading
import gradio as gr
import uvicorn
from fastapi import FastAPI
from fastapi.responses import HTMLResponse
from pathlib import Path
from dotenv import load_dotenv
# Ajouter le dossier agent au path
sys.path.insert(0, str(Path(__file__).parent / "agent"))
load_dotenv()
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Dรฉmarrage de l'agent en arriรจre-plan
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_agent_process: subprocess.Popen | None = None
def start_agent_worker():
"""Lance le worker LiveKit dans un sous-processus."""
global _agent_process
agent_path = Path(__file__).parent / "agent" / "voice_agent.py"
_agent_process = subprocess.Popen(
[sys.executable, str(agent_path), "start"],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
)
print(f"[Agent] Worker dรฉmarrรฉ โ PID {_agent_process.pid}")
for line in _agent_process.stdout:
print(f"[Agent] {line}", end="")
def launch_agent_thread():
t = threading.Thread(target=start_agent_worker, daemon=True)
t.start()
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Gรฉnรฉration de token LiveKit
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def get_token(room_name: str = "") -> str:
try:
from token_server import get_connection_details
details = get_connection_details(room_name=room_name or None)
return json.dumps(details, indent=2)
except Exception as e:
return json.dumps({"success": False, "error": str(e)})
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# HTML de l'interface LiveKit WebRTC
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def build_livekit_html() -> str:
"""Gรฉnรจre le HTML en injectant URL + token depuis le .env."""
try:
from token_server import get_connection_details
details = get_connection_details()
injected_url = details["url"]
injected_token = details["token"]
auto_connect = "true"
except Exception:
injected_url = os.getenv("LIVEKIT_URL", "")
injected_token = ""
auto_connect = "false"
return LIVEKIT_CLIENT_HTML_TEMPLATE.replace("__LIVEKIT_URL__", injected_url) \
.replace("__LIVEKIT_TOKEN__", injected_token) \
.replace("__AUTO_CONNECT__", auto_connect)
LIVEKIT_CLIENT_HTML_TEMPLATE = """
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voice Agent</title>
<script src="https://cdn.jsdelivr.net/npm/livekit-client@2/dist/livekit-client.umd.min.js"></script>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background: #0f0f13;
color: #e8e8f0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100%;
max-width: 480px;
padding: 2rem;
}
.card {
background: #1a1a24;
border: 1px solid #2a2a3a;
border-radius: 20px;
padding: 2rem;
text-align: center;
}
h2 {
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 0.4rem;
color: #fff;
}
.subtitle { color: #7070a0; font-size: 0.85rem; margin-bottom: 2rem; }
/* Visualiseur audio */
.audio-viz {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
height: 80px;
margin: 1.5rem 0;
}
.bar {
width: 5px;
border-radius: 3px;
background: #4c4cff;
transition: height 0.1s ease;
height: 8px;
}
.bar.active { animation: pulse 0.8s ease-in-out infinite alternate; }
@keyframes pulse {
from { height: 8px; background: #4c4cff; }
to { height: 48px; background: #7c7cff; }
}
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.05s; }
.bar:nth-child(5) { animation-delay: 0.15s; }
.bar:nth-child(6) { animation-delay: 0.25s; }
.bar:nth-child(7) { animation-delay: 0.08s; }
.bar:nth-child(8) { animation-delay: 0.18s; }
/* Status */
.status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 14px;
border-radius: 999px;
font-size: 0.8rem;
font-weight: 500;
margin-bottom: 1.5rem;
background: #12121c;
border: 1px solid #2a2a3a;
}
.dot {
width: 8px; height: 8px;
border-radius: 50%;
background: #444;
}
.dot.connected { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.dot.connecting { background: #f59e0b; animation: blink 1s infinite; }
.dot.error { background: #ef4444; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
/* Bouton principal */
.btn-main {
width: 100%;
padding: 14px;
border-radius: 12px;
border: none;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
margin-bottom: 0.8rem;
}
.btn-connect {
background: linear-gradient(135deg, #4c4cff, #7c4cff);
color: #fff;
}
.btn-connect:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-disconnect {
background: #2a1a1a;
color: #ff7070;
border: 1px solid #5a2a2a;
}
.btn-disconnect:hover { background: #3a2020; }
.btn-main:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
/* Mute toggle */
.btn-mute {
width: 100%;
padding: 10px;
border-radius: 10px;
border: 1px solid #2a2a3a;
background: #12121c;
color: #a0a0c0;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.2s;
}
.btn-mute:hover { border-color: #4c4cff; color: #fff; }
.btn-mute.muted { border-color: #ef4444; color: #ef4444; }
/* Transcript */
.transcript {
margin-top: 1.5rem;
background: #12121c;
border: 1px solid #2a2a3a;
border-radius: 12px;
padding: 1rem;
max-height: 180px;
overflow-y: auto;
text-align: left;
font-size: 0.82rem;
color: #8888aa;
line-height: 1.5;
}
.transcript:empty::before { content: "La transcription apparaรฎtra iciโฆ"; }
.transcript .msg { margin-bottom: 0.5rem; }
.transcript .msg.user { color: #7c7cff; }
.transcript .msg.agent { color: #e8e8f0; }
/* Config panel */
.config { margin-bottom: 1.5rem; }
.config input {
width: 100%;
padding: 10px 14px;
background: #12121c;
border: 1px solid #2a2a3a;
border-radius: 10px;
color: #e8e8f0;
font-size: 0.85rem;
outline: none;
transition: border-color 0.2s;
}
.config input:focus { border-color: #4c4cff; }
.config label { display: block; font-size: 0.78rem; color: #7070a0; margin-bottom: 6px; }
</style>
</head>
<body>
<div class="container">
<div class="card">
<h2>๐๏ธ Voice Agent</h2>
<p class="subtitle"> LiveKit </p>
<div id="statusBadge" class="status-badge">
<span class="dot" id="dot"></span>
<span id="statusText">Dรฉconnectรฉ</span>
</div>
<div class="audio-viz">
<div class="bar" id="b1"></div>
<div class="bar" id="b2"></div>
<div class="bar" id="b3"></div>
<div class="bar" id="b4"></div>
<div class="bar" id="b5"></div>
<div class="bar" id="b6"></div>
<div class="bar" id="b7"></div>
<div class="bar" id="b8"></div>
</div>
<input type="hidden" id="livekitUrl" value="__LIVEKIT_URL__" />
<input type="hidden" id="livekitToken" value="__LIVEKIT_TOKEN__" />
<button id="btnConnect" class="btn-main btn-connect">
Se connecter
</button>
<button id="btnDisconnect" class="btn-main btn-disconnect" style="display:none">
โน Dรฉconnecter
</button>
<button id="btnMute" class="btn-mute" style="display:none">
๐ค Micro actif
</button>
<div class="transcript" id="transcript"></div>
</div>
</div>
<script>
(function() {
const { Room, RoomEvent, Track, TrackEvent, createLocalAudioTrack } = LivekitClient;
let room = null;
let localAudio = null;
let isMuted = false;
function setStatus(state, text) {
document.getElementById('dot').className = 'dot ' + state;
document.getElementById('statusText').textContent = text;
}
function addTranscript(role, text) {
const t = document.getElementById('transcript');
const div = document.createElement('div');
div.className = 'msg ' + role;
div.textContent = (role === 'user' ? '๐ค ' : '๐ค ') + text;
t.appendChild(div);
t.scrollTop = t.scrollHeight;
}
function startAudioAnimation() {
document.querySelectorAll('.bar').forEach(b => b.classList.add('active'));
}
function stopAudioAnimation() {
document.querySelectorAll('.bar').forEach(b => b.classList.remove('active'));
}
async function connectAgent() {
// Vรฉrifier contexte sรฉcurisรฉ (HTTPS ou localhost)
if (!navigator.mediaDevices || !navigator.mediaDevices.getUserMedia) {
setStatus('error', 'Micro indisponible');
addTranscript('agent', 'โ ๏ธ Micro inaccessible : ouvrez la page en HTTPS (pas en HTTP).');
return;
}
const url = document.getElementById('livekitUrl').value.trim();
const token = document.getElementById('livekitToken').value.trim();
if (!url || !token) {
setStatus('error', 'Config manquante');
return;
}
setStatus('connecting', 'Connexionโฆ');
document.getElementById('btnConnect').disabled = true;
try {
room = new Room({ audioCaptureDefaults: { echoCancellation: true, noiseSuppression: true } });
room.on(RoomEvent.Connected, () => {
setStatus('connected', 'Connectรฉ');
document.getElementById('btnConnect').style.display = 'none';
document.getElementById('btnDisconnect').style.display = 'block';
document.getElementById('btnMute').style.display = 'block';
addTranscript('agent', 'Connexion รฉtablie โ parlez !');
});
room.on(RoomEvent.Disconnected, () => {
setStatus('', 'Dรฉconnectรฉ');
document.getElementById('btnConnect').style.display = 'block';
document.getElementById('btnConnect').disabled = false;
document.getElementById('btnDisconnect').style.display = 'none';
document.getElementById('btnMute').style.display = 'none';
stopAudioAnimation();
});
room.on(RoomEvent.TrackSubscribed, (track) => {
if (track.kind === Track.Kind.Audio) {
document.body.appendChild(track.attach());
startAudioAnimation();
}
});
room.on(RoomEvent.TrackUnsubscribed, (track) => {
if (track.kind === Track.Kind.Audio) {
track.detach().forEach(el => el.remove());
stopAudioAnimation();
}
});
room.on(RoomEvent.DataReceived, (data) => {
try {
const msg = JSON.parse(new TextDecoder().decode(data));
if (msg.type === 'transcript') addTranscript(msg.role || 'agent', msg.text);
} catch (_) {}
});
await room.connect(url, token);
localAudio = await createLocalAudioTrack({ echoCancellation: true, noiseSuppression: true, autoGainControl: true });
await room.localParticipant.publishTrack(localAudio);
} catch (err) {
setStatus('error', 'Erreur : ' + err.message);
document.getElementById('btnConnect').disabled = false;
}
}
async function disconnectAgent() {
if (room) { await room.disconnect(); room = null; localAudio = null; }
}
function toggleMute() {
if (!localAudio) return;
isMuted = !isMuted;
localAudio.mute(isMuted);
const btn = document.getElementById('btnMute');
btn.textContent = isMuted ? '๐ Micro coupรฉ' : '๐ค Micro actif';
btn.classList.toggle('muted', isMuted);
}
// Attacher les รฉvรฉnements sur les boutons (pas d'onclick inline)
document.getElementById('btnConnect').addEventListener('click', connectAgent);
document.getElementById('btnDisconnect').addEventListener('click', disconnectAgent);
document.getElementById('btnMute').addEventListener('click', toggleMute);
// Pas d'auto-connexion โ l'utilisateur clique sur "Se connecter"
})();
</script>
</body>
</html>
"""
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Interface Gradio
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def build_gradio_app() -> gr.Blocks:
with gr.Blocks(title="Voice Agent LiveKit") as demo:
gr.Markdown(
"""
# ๐๏ธ Voice Agent โ LiveKit + Gradio
Assistant vocal propulsรฉ par **LiveKit** et **Whisper**.
"""
)
with gr.Tabs():
# โโ Onglet Agent โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with gr.TabItem("๐ Agent Vocal"):
gr.HTML(
"<iframe src='/voice-ui' "
"style='width:100%;height:700px;border:none;border-radius:12px;' "
"allow='microphone; autoplay; clipboard-write' "
"allowtransparency='true'></iframe>"
)
# โโ Onglet Token โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with gr.TabItem("๐ Gรฉnรฉrer un Token"):
gr.Markdown(
"Gรฉnรฉrez un token LiveKit depuis le serveur. "
"Copiez `url` et `token` dans l'interface ci-dessus."
)
room_input = gr.Textbox(
label="Nom de la room (optionnel)",
placeholder="voice-room-demo",
max_lines=1,
)
gen_btn = gr.Button("Gรฉnรฉrer le Token", variant="primary")
token_output = gr.Code(language="json", label="Dรฉtails de connexion")
gen_btn.click(fn=get_token, inputs=[room_input], outputs=[token_output])
# Pied de page
gr.Markdown(
"<center style='color:#555;font-size:0.8rem;margin-top:1rem'>"
"LiveKit Agents ยท OpenAI GPT-4o-mini ยท Silero VAD"
"</center>"
)
return demo
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# Main
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if __name__ == "__main__":
import argparse
import uvicorn
from fastapi import FastAPI
from fastapi.responses import HTMLResponse
parser = argparse.ArgumentParser()
parser.add_argument("--no-agent", action="store_true", help="Ne pas lancer l'agent")
parser.add_argument("--port", type=int, default=7860)
args = parser.parse_args()
# Lancer le worker agent en arriรจre-plan
if not args.no_agent:
print("[Main] Dรฉmarrage du worker LiveKit Agentโฆ")
launch_agent_thread()
# Construire l'app FastAPI et monter Gradio dessus
fastapi_app = FastAPI()
from fastapi.responses import Response
@fastapi_app.get("/voice-ui")
async def voice_ui():
html = build_livekit_html()
return Response(
content=html,
media_type="text/html",
headers={
"Permissions-Policy": "microphone=*, camera=*",
"Cross-Origin-Opener-Policy": "same-origin-allow-popups",
},
)
gradio_demo = build_gradio_app()
app = gr.mount_gradio_app(fastapi_app, gradio_demo, path="/")
print(f"[Main] App lancรฉe sur http://localhost:{args.port}")
uvicorn.run(app, host="0.0.0.0", port=args.port) |