eaglelandsonce commited on
Commit
38aef23
1 Parent(s): b280ffb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,10 +2,10 @@ import streamlit as st
2
  import subprocess
3
  import json
4
 
5
- st.title('Math Problem Solver')
6
 
7
- api_key = st.text_input("Enter your API Key:")
8
- math_problem = st.text_input("Enter your math problem:")
9
 
10
  if st.button('Solve'):
11
  if api_key and math_problem:
 
2
  import subprocess
3
  import json
4
 
5
+ st.title('AutoGen MathChat')
6
 
7
+ api_key = st.text_input("Enter your API Key:",type="password")
8
+ math_problem = st.text_input("Enter your math problem:", "integrate x^2 from 0 to 5")
9
 
10
  if st.button('Solve'):
11
  if api_key and math_problem: