Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
3 |
|
4 |
st.title("DataScienceMasterminds - Get Quotes from AI")
|
5 |
|
6 |
-
topic = st.
|
7 |
|
8 |
if st.button("Get Resposne") and topic:
|
9 |
-
|
|
|
|
1 |
import streamlit as st
|
2 |
+
from utils import *
|
3 |
|
4 |
st.title("DataScienceMasterminds - Get Quotes from AI")
|
5 |
|
6 |
+
topic = st.text_input("Enter your topic / keywords here..")
|
7 |
|
8 |
if st.button("Get Resposne") and topic:
|
9 |
+
resposnse = get_quote(topic)
|
10 |
+
st.write(response)
|