+
PersonaPlex Test
+
Simple frontend to test the PersonaPlex stack
+
+ {/* Connection Status */}
+
+
+
+
+
+ Status: {connectionStatus.charAt(0).toUpperCase() + connectionStatus.slice(1)}
+
+
+
+ {connectionStatus === "disconnected" ? (
+
+ ) : (
+
+ )}
+
+
+ {error && (
+
+ {error}
+
+ )}
+
+
+ {/* Configuration */}
+
+
Configuration
+
+
+
+
+
+
+
+
+
+
+
+ {/* Controls */}
+ {connectionStatus === "connected" && (
+
+
Controls
+
+
+
+
+
+
+
+
+ )}
+
+ {/* Transcribed Text */}
+
+
Transcribed Text
+
+ {transcribedText.length === 0 ? (
+
No text received yet...
+ ) : (
+
+ {transcribedText.map((text, index) => (
+
+ ))}
+
+ )}
+
+ {transcribedText.length > 0 && (
+
+ )}
+
+