import sys import os import openai import gradio as gr #from auth import HF_TOKEN openai.api_key = os.getenv('API_KEY') default_prompt = 'How to use ChatGPT?' #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("""

ChatDulun is Here to Disrupt Incumbent Workflow in HigherED

""") with gr.Row().style(equal_height=True): name = gr.Textbox(label='What You Want ...').style(show_copy_button=True, container=True) output = gr.Textbox(label='What You Get ...') greet_btn = gr.Button("==> ChatGPT will complete ==>").style(size='lg') with gr.Accordion(label = "Are We Learning or Machine Learning ?", open = False): gr.Markdown("""![Robot](https://drclab-dulun-store.hf.space/img/ml.jpg)""") greet_btn.click(fn=greet, inputs=name, outputs=output) demo.title= 'ChatDulun = HigherEd Disrupted' demo.launch()