AI_prihars / app.py
Harshil24's picture
Update app.py
3002e99
raw
history blame
242 Bytes
import streamlit as st
def gene():
print("hello")
if st.button("Generate Text"):
# When the button is clicked, call the generate_text function
generated_text = gene()
st.write("Generated Text:")
st.write(generated_text)