reddmann007 commited on
Commit
f7df839
·
verified ·
1 Parent(s): b28fc34

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -6,8 +6,12 @@ from langgraph.prebuilt import create_react_agent
6
 
7
  # 1. Page Configuration
8
  st.set_page_config(page_title="AI Math Agent", page_icon="🧮")
 
9
  st.markdown("<h1 style='text-align: center;'>AI Math Agent 🧮</h1>", unsafe_allow_html=True)
10
 
 
 
 
11
  # 2. Secret Retrieval
12
  api_key = os.getenv("GROQ_API_KEY")
13
 
 
6
 
7
  # 1. Page Configuration
8
  st.set_page_config(page_title="AI Math Agent", page_icon="🧮")
9
+ # Centered Title
10
  st.markdown("<h1 style='text-align: center;'>AI Math Agent 🧮</h1>", unsafe_allow_html=True)
11
 
12
+ # Centered Description
13
+ st.markdown("<p style='text-align: center;'>I'm here to help you solve your math homework step-by-step!</p>", unsafe_allow_html=True)
14
+
15
  # 2. Secret Retrieval
16
  api_key = os.getenv("GROQ_API_KEY")
17