voiceCalendar / hello_world.py
Peter Michael Gits
feat: Add Streamlit-native WebRTC speech-to-text using unmute.sh patterns
21fac9b
raw
history blame contribute delete
631 Bytes
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()