nos commited on
Commit
e363a36
·
verified ·
1 Parent(s): 51fcb03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -61,11 +61,10 @@ def flip_image(x):
61
  with gr.Blocks() as demo:
62
 
63
  with gr.Tab("Chat"):
64
- gr.ChatInterface(
65
- fn=respond,
66
- fill_height=True,
67
- multimodal=True
68
- )
69
  with gr.Tab("ELS"):
70
  with gr.Row():
71
  text1 = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
 
61
  with gr.Blocks() as demo:
62
 
63
  with gr.Tab("Chat"):
64
+ chatbot = gr.Chatbot()
65
+ msg = gr.Textbox()
66
+ clear = gr.ClearButton([msg, chatbot])
67
+
 
68
  with gr.Tab("ELS"):
69
  with gr.Row():
70
  text1 = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)