Update app.py
Browse files
app.py
CHANGED
@@ -625,15 +625,6 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
|
|
625 |
except Exception as e:
|
626 |
print(f"Error executing history item: {e}")
|
627 |
return None, None, gr.update(active_key="empty"), gr.update(open=True)
|
628 |
-
|
629 |
-
|
630 |
-
# 이벤트 핸들러 수정
|
631 |
-
session_list.change(
|
632 |
-
load_session_history,
|
633 |
-
inputs=[session_list],
|
634 |
-
outputs=[session_history]
|
635 |
-
)
|
636 |
-
|
637 |
|
638 |
# 메인 컨텐츠를 위한 Row
|
639 |
with antd.Row(gutter=[32, 12]) as layout:
|
|
|
625 |
except Exception as e:
|
626 |
print(f"Error executing history item: {e}")
|
627 |
return None, None, gr.update(active_key="empty"), gr.update(open=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 |
|
629 |
# 메인 컨텐츠를 위한 Row
|
630 |
with antd.Row(gutter=[32, 12]) as layout:
|