chatbot / app.py
freeai-app's picture
Update app.py
d281b8e verified
raw
history blame
299 Bytes
import gradio as gr
def thank_you():
return "πŸŽ‰ Thanks for supporting FreeAi! Your premium key: SAMPLE-KEY-1234"
with gr.Blocks() as demo:
gr.Markdown("# πŸ™ Thank You for Supporting FreeAi!")
gr.Textbox(value=thank_you(), interactive=False, label="Your Premium Key")
demo.launch()