Spaces:
Runtime error
Runtime error
Commit
·
a00ebef
1
Parent(s):
5f26453
seperate logs
Browse files
app.py
CHANGED
@@ -700,12 +700,12 @@ with gr.Blocks() as demo:
|
|
700 |
scale= 1,
|
701 |
interactive=False,
|
702 |
autoplay= True)
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
# logs = gr.Textbox()
|
708 |
-
|
709 |
# upload_button.upload(func_upload_file, [upload_button, main.chatbot], main.chatbot)
|
710 |
inputtext.submit(chathmi3, [inputtext, chatbot], [inputtext, chatbot])
|
711 |
upload_button.upload(func_upload_file, [upload_button, chatbot], chatbot)
|
|
|
700 |
scale= 1,
|
701 |
interactive=False,
|
702 |
autoplay= True)
|
703 |
+
with gr.Accordion(
|
704 |
+
label = "LOGS",
|
705 |
+
open = False,
|
706 |
+
):
|
707 |
# logs = gr.Textbox()
|
708 |
+
logs = gr.Textbox()
|
709 |
# upload_button.upload(func_upload_file, [upload_button, main.chatbot], main.chatbot)
|
710 |
inputtext.submit(chathmi3, [inputtext, chatbot], [inputtext, chatbot])
|
711 |
upload_button.upload(func_upload_file, [upload_button, chatbot], chatbot)
|