Spaces:
Sleeping
Sleeping
Peter Michael Gits
feat: Add Streamlit-native WebRTC speech-to-text using unmute.sh patterns
21fac9b | import streamlit as st | |
| from webrtc_streamlit import webrtc_handler | |
| st.title("π€π VoiceCalendar") | |
| st.write("Voice-enabled AI scheduling assistant - ready for deployment!") | |
| st.success("If you see this, the new space is working properly!") | |
| # Configuration test results | |
| st.subheader("Configuration Test") | |
| st.write("β Streamlit loading") | |
| st.write("β Basic UI components") | |
| st.write("β Clean space infrastructure") | |
| if st.button("Test Button"): | |
| st.balloons() | |
| st.write("π Interactive components working!") | |
| # WebRTC Speech-to-Text Interface (unmute.sh patterns) | |
| st.divider() | |
| webrtc_handler.create_webrtc_interface() |