Spaces:
Sleeping
Sleeping
df_string_output = gr.Textbox(label="")
Browse files
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 |
-
|
66 |
-
|
|
|
|
|
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()
|