Spaces:
Runtime error
Runtime error
eaglelandsonce
commited on
Commit
•
b252803
1
Parent(s):
80b30f1
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ st.title('AutoGen MathChat')
|
|
6 |
st.markdown('''To learn more join https://www.meetup.com/florence-aws-user-group-meetup/''')
|
7 |
|
8 |
api_key = st.text_input("Enter your Openai API Key:",type="password")
|
9 |
-
math_problem = st.
|
10 |
|
11 |
if st.button('Solve'):
|
12 |
if api_key and math_problem:
|
|
|
6 |
st.markdown('''To learn more join https://www.meetup.com/florence-aws-user-group-meetup/''')
|
7 |
|
8 |
api_key = st.text_input("Enter your Openai API Key:",type="password")
|
9 |
+
math_problem = st.text_area("Enter your math problem:", "integrate x^2 from 0 to 5", height=100)
|
10 |
|
11 |
if st.button('Solve'):
|
12 |
if api_key and math_problem:
|