Update app.py
Browse files
app.py
CHANGED
@@ -763,21 +763,23 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
|
|
763 |
execute_btn = antd.Button("Code ์คํ", type="default", size="large")
|
764 |
clear_btn = antd.Button("Clear", type="default", size="large")
|
765 |
|
766 |
-
# ํ
ํ๋ฆฟ ๋ฒํผ๋ค์ ์ํ ์๋ก์ด Flex ์ปจํ
์ด๋
|
767 |
with antd.Flex(gap="small", justify="space-between"):
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
with antd.Col(span=24, md=16):
|
774 |
with ms.Div(elem_classes="right_panel"):
|
775 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|
776 |
codeBtn = antd.Button("๐งโ๐ป ์ฝ๋ ๋ณด๊ธฐ", type="default")
|
777 |
historyBtn = antd.Button("๐ ํ์คํ ๋ฆฌ", type="default")
|
778 |
-
|
|
|
|
|
779 |
|
780 |
gr.HTML('<div class="render_header"><span class="header_btn"></span><span class="header_btn"></span><span class="header_btn"></span></div>')
|
|
|
781 |
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab:
|
782 |
with antd.Tabs.Item(key="empty"):
|
783 |
empty = antd.Empty(description="empty input", elem_classes="right_content")
|
|
|
763 |
execute_btn = antd.Button("Code ์คํ", type="default", size="large")
|
764 |
clear_btn = antd.Button("Clear", type="default", size="large")
|
765 |
|
|
|
766 |
with antd.Flex(gap="small", justify="space-between"):
|
767 |
+
btn = antd.Button("Send", type="primary", size="large")
|
768 |
+
execute_btn = antd.Button("Code ์คํ", type="default", size="large")
|
769 |
+
clear_btn = antd.Button("Clear", type="default", size="large")
|
770 |
+
|
771 |
+
# ์ฐ์ธก ํจ๋ ๋ถ๋ถ์ ๋ค์๊ณผ ๊ฐ์ด ์์
|
772 |
with antd.Col(span=24, md=16):
|
773 |
with ms.Div(elem_classes="right_panel"):
|
774 |
with antd.Flex(gap="small", elem_classes="setting-buttons"):
|
775 |
codeBtn = antd.Button("๐งโ๐ป ์ฝ๋ ๋ณด๊ธฐ", type="default")
|
776 |
historyBtn = antd.Button("๐ ํ์คํ ๋ฆฌ", type="default")
|
777 |
+
best_btn = antd.Button("๐ ๋ฒ ์คํธ ํ
ํ๋ฆฟ", type="default")
|
778 |
+
trending_btn = antd.Button("๐ฅ ํธ๋ ๋ฉ ํ
ํ๋ฆฟ", type="default")
|
779 |
+
new_btn = antd.Button("โจ NEW ํ
ํ๋ฆฟ", type="default")
|
780 |
|
781 |
gr.HTML('<div class="render_header"><span class="header_btn"></span><span class="header_btn"></span><span class="header_btn"></span></div>')
|
782 |
+
|
783 |
with antd.Tabs(active_key="empty", render_tab_bar="() => null") as state_tab:
|
784 |
with antd.Tabs.Item(key="empty"):
|
785 |
empty = antd.Empty(description="empty input", elem_classes="right_content")
|