Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ with gr.Blocks(css_paths="app.css") as demo:
|
|
143 |
except Exception as e:
|
144 |
raise ValueError(f'Error calling Claude API: {str(e)}')
|
145 |
|
146 |
-
with ms.Application() as app:
|
147 |
with antd.ConfigProvider():
|
148 |
# 메인 컨텐츠 영역
|
149 |
with antd.Row(gutter=[32, 12], elem_classes="main-content") as layout:
|
@@ -182,7 +182,7 @@ with ms.Application() as app:
|
|
182 |
with antd.Tabs.Item(key="loading"):
|
183 |
loading = antd.Spin(True, tip="coding...", size="large", elem_classes="right_content")
|
184 |
with antd.Tabs.Item(key="render"):
|
185 |
-
sandbox = gr.HTML(elem_classes="html_content")
|
186 |
|
187 |
with antd.ConfigProvider():
|
188 |
# 메인 컨텐츠 영역
|
|
|
143 |
except Exception as e:
|
144 |
raise ValueError(f'Error calling Claude API: {str(e)}')
|
145 |
|
146 |
+
with ms.Application() as app:
|
147 |
with antd.ConfigProvider():
|
148 |
# 메인 컨텐츠 영역
|
149 |
with antd.Row(gutter=[32, 12], elem_classes="main-content") as layout:
|
|
|
182 |
with antd.Tabs.Item(key="loading"):
|
183 |
loading = antd.Spin(True, tip="coding...", size="large", elem_classes="right_content")
|
184 |
with antd.Tabs.Item(key="render"):
|
185 |
+
sandbox = gr.HTML(elem_classes="html_content")
|
186 |
|
187 |
with antd.ConfigProvider():
|
188 |
# 메인 컨텐츠 영역
|