Spaces:
Running
Running
File size: 358 Bytes
4f5c546 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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}! 👋") |