Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from fastrtc import FastRTC
|
3 |
+
import os
|
4 |
+
|
5 |
+
st.title("FastRTC Voice Assistant")
|
6 |
+
st.write("Talk to DeepSeek LLM with ElevenLabs voice!")
|
7 |
+
|
8 |
+
# Initialize your FastRTC components
|
9 |
+
# (You'll need to adapt your existing code for the web interface)
|
10 |
+
|
11 |
+
fastrtc = FastRTC()
|
12 |
+
|
13 |
+
# Create a simple UI
|
14 |
+
st.button("Start Voice Chat")
|