import sys import gradio as gr #sys.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("""

ChatDulun is Here to Disrupt

""") name = gr.Textbox(label='Guest Name') with gr.Accordion("Are we learning?"): gr.Markdown("""![Robot](https://miro.medium.com/v2/resize:fit:720/format:webp/1*wohx1bGrN0tRuAZrak5dOg.png)""") output = gr.Textbox(label='Greetings !') greet_btn = gr.Button("Greet") greet_btn.click(fn=greet, inputs=name, outputs=output) demo.title= 'ChatDulun = Higher Education Disrupted' demo.launch()