abaliyan commited on
Commit
e32f8a3
·
verified ·
1 Parent(s): dd892c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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.input_text("Enter your topic / keywords here..")
7
 
8
  if st.button("Get Resposne") and topic:
9
- st.write(topic+ 'this is the quote.')
 
 
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)