VenkateshRoshan
commited on
Commit
·
c66f16a
1
Parent(s):
d708bbc
app.py style updated
Browse files
app.py
CHANGED
@@ -58,10 +58,17 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
58 |
# ],
|
59 |
# )
|
60 |
|
61 |
-
|
62 |
-
|
63 |
-
|
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()
|