Twelve2five commited on
Commit
9e6481e
·
verified ·
1 Parent(s): a7df83b

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
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")