math-ai-system / app.py
Hebaelsayed's picture
Create app.py
4f5c546 verified
import streamlit as st
st.set_page_config(page_title="Math AI", layout="wide")
st.title("๐Ÿงฎ Math AI System")
st.markdown("### Step 1: Testing Basic Setup")
st.success("โœ… Your app is running!")
st.write("If you see this, everything is working!")
# Test user input
name = st.text_input("What's your name?")
if name:
st.write(f"Hello, {name}! ๐Ÿ‘‹")