Spaces:
Runtime error
Runtime error
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) |