Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- __pycache__/app.cpython-311.pyc +0 -0
- app.py +1 -1
- statics/__pycache__/style.cpython-311.pyc +0 -0
- statics/style.py +4 -0
__pycache__/app.cpython-311.pyc
CHANGED
Binary files a/__pycache__/app.cpython-311.pyc and b/__pycache__/app.cpython-311.pyc differ
|
|
app.py
CHANGED
@@ -76,6 +76,6 @@ with gr.Blocks(theme=gr.themes.Base(),
|
|
76 |
save_btn.click(save_result, inputs=[history_result, sentences, polished_result], outputs=history_result)
|
77 |
|
78 |
with gr.Tab("Literature Review"):
|
79 |
-
|
80 |
|
81 |
demo.queue().launch()
|
|
|
76 |
save_btn.click(save_result, inputs=[history_result, sentences, polished_result], outputs=history_result)
|
77 |
|
78 |
with gr.Tab("Literature Review"):
|
79 |
+
gr.HTML(literature_review_html)
|
80 |
|
81 |
demo.queue().launch()
|
statics/__pycache__/style.cpython-311.pyc
CHANGED
Binary files a/statics/__pycache__/style.cpython-311.pyc and b/statics/__pycache__/style.cpython-311.pyc differ
|
|
statics/style.py
CHANGED
@@ -72,4 +72,8 @@ english_polishing_html = """
|
|
72 |
|
73 |
history_result_html = """
|
74 |
<span data-testid="block-info" class="svelte-1gfkn6j custom_label")># History Result</span>
|
|
|
|
|
|
|
|
|
75 |
"""
|
|
|
72 |
|
73 |
history_result_html = """
|
74 |
<span data-testid="block-info" class="svelte-1gfkn6j custom_label")># History Result</span>
|
75 |
+
"""
|
76 |
+
|
77 |
+
literature_review_html = """
|
78 |
+
<span data-testid="block-info" class="svelte-1gfkn6j custom_label")>under construction...</span>
|
79 |
"""
|