ChatDulun / app.py
CJ Duan
APP
ba02b7f
raw
history blame
No virus
892 Bytes
import sys
import gradio as gr
from auth import HF_TOKEN
#gitsys.path.insert(0, '/')
def greet(name):
return "ChatDulun is ChatGPT induced disruption to Higher Education \n" + name + "!!"
# iface = gr.Interface(fn=greet, inputs="text", outputs="text", title='ChatDulun = Higher Education Disrupted',
# css=""" body { background-color: red } .input_text input { background-color: green } """)
with gr.Blocks() as demo:
gr.HTML("""<h1 align="center">ChatDulun is Here to Disrupt</h1>""")
name = gr.Textbox(label='Guest Name')
with gr.Accordion("Are we learning?"):
gr.Markdown("""![Robot](https://drclab-dulun-store.hf.space/img/ml.jpg)""")
output = gr.Textbox(label='Greetings !')
greet_btn = gr.Button("Greet")
greet_btn.click(fn=greet, inputs=name, outputs=output)
demo.title= 'ChatDulun = HigherEd Disrupted'
demo.launch()