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()