youngtsai commited on
Commit
b7653fb
1 Parent(s): aa49250

df_string_output = gr.Textbox(label="")

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -62,8 +62,10 @@ def respond(user_message, chat_history):
62
 
63
  with gr.Blocks() as demo:
64
  with gr.Row():
65
- file_upload = gr.File(label="Upload your file")
66
- df_string_output = gr.Variable()
 
 
67
 
68
  with gr.Row():
69
  chatbot = gr.Chatbot()
 
62
 
63
  with gr.Blocks() as demo:
64
  with gr.Row():
65
+ with gr.Column():
66
+ file_upload = gr.File(label="Upload your file")
67
+ with gr.Column():
68
+ df_string_output = gr.Textbox(label="")
69
 
70
  with gr.Row():
71
  chatbot = gr.Chatbot()