zej97 commited on
Commit
241d2a5
1 Parent(s): fd4f7ed

Upload folder using huggingface_hub

Browse files
__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
- pass
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
  """