#!/usr/bin/env python3 """ Simple test Streamlit app to verify basic functionality """ import streamlit as st # Configure Streamlit page st.set_page_config( page_title="VoiceCal Test", page_icon="🎤", layout="wide" ) def main(): st.title("🎤📅 VoiceCal - Voice-Enabled AI Assistant (Test)") st.markdown("**Testing basic Streamlit functionality**") # Simple content without JavaScript st.success("✅ Basic Streamlit is working!") st.markdown("### Service Status") col1, col2 = st.columns(2) with col1: st.metric("🎤 VoiceCal", "Online", "✅") st.metric("🧠 STT Service", "Ready", "✅") with col2: st.metric("🔊 TTS Service", "Ready", "✅") st.metric("📱 Pattern", "unmute.sh", "🎯") st.markdown("---") st.markdown("🎯 **Ready for WebSocket integration testing**") # Add simple HTML without complex JavaScript simple_html = """

🎤 Simple Voice Interface Test

JavaScript functionality will be added after basic test passes.

""" st.components.v1.html(simple_html, height=150) if __name__ == "__main__": main()