VenkateshRoshan commited on
Commit
c66f16a
·
1 Parent(s): d708bbc

app.py style updated

Browse files
Files changed (1) hide show
  1. app.py +11 -4
app.py CHANGED
@@ -58,10 +58,17 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
58
  # ],
59
  # )
60
 
61
- demo = gr.Interface(
62
- chatBox = gr.Chatbot(height=100,placeholder="Type your message here...",label="Chatbot"),
63
- button = gr.Button(scale=1)
64
- )
 
 
 
 
 
 
 
65
 
66
  if __name__ == "__main__":
67
  demo.launch()
 
58
  # ],
59
  # )
60
 
61
+ with gr.Blocks() as demo :
62
+ with gr.Row():
63
+ query = gr.Textbox(label="Enter your Query : ")
64
+ history = gr.Textbox(label="History : ")
65
+ enter = gr.Button(label="Enter")
66
+
67
+ with gr.Row():
68
+ output = gr.Textbox(label="Response : ")
69
+
70
+ enter.click(respond, query, history, "You are a friendly Chatbot.", 512, 0.7, 0.95, outputs=output)
71
+
72
 
73
  if __name__ == "__main__":
74
  demo.launch()