File size: 373 Bytes
9e6481e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
   import streamlit as st
   from fastrtc import FastRTC
   import os
   
   st.title("FastRTC Voice Assistant")
   st.write("Talk to DeepSeek LLM with ElevenLabs voice!")
   
   # Initialize your FastRTC components 
   # (You'll need to adapt your existing code for the web interface)
   
   fastrtc = FastRTC()
   
   # Create a simple UI
   st.button("Start Voice Chat")