File size: 258 Bytes
3ec7ef9
e32f8a3
3ec7ef9
 
 
e32f8a3
3ec7ef9
 
e32f8a3
7ebe984
1
2
3
4
5
6
7
8
9
10
import streamlit as st
from utils import *

st.title("DataScienceMasterminds - Get Quotes from AI")

topic = st.text_input("Enter your topic / keywords here..")

if st.button("Get Resposne") and topic:
    resposnse = get_quote(topic)
    st.write(resposnse)