Spaces:
Running
Running
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.set_page_config(page_title="Math AI", layout="wide")
|
| 4 |
+
|
| 5 |
+
st.title("🧮 Math AI System")
|
| 6 |
+
st.markdown("### Step 1: Testing Basic Setup")
|
| 7 |
+
|
| 8 |
+
st.success("✅ Your app is running!")
|
| 9 |
+
st.write("If you see this, everything is working!")
|
| 10 |
+
|
| 11 |
+
# Test user input
|
| 12 |
+
name = st.text_input("What's your name?")
|
| 13 |
+
if name:
|
| 14 |
+
st.write(f"Hello, {name}! 👋")
|