chansung commited on
Commit
c3d4cb6
β€’
1 Parent(s): e08d6ea
Files changed (2) hide show
  1. app.py +3 -1
  2. constants/styles.css +7 -0
app.py CHANGED
@@ -166,6 +166,8 @@ with gr.Blocks(css="constants/styles.css", theme=gr.themes.Soft()) as demo:
166
  concurrency_limit=20,
167
  )
168
 
 
 
169
  gr.Markdown("The target papers are collected from [Hugging Face πŸ€— Daily Papers](https://huggingface.co/papers) on a daily basis. "
170
  "The entire data is generated by [Google's Gemini 1.0](https://deepmind.google/technologies/gemini/) Pro. "
171
  "If you are curious how it is done, visit the [Auto Paper Q&A Generation project repository](https://github.com/deep-diver/auto-paper-analysis) "
@@ -388,7 +390,7 @@ scheduler.add_job(
388
  ],
389
  start_date=start_date
390
  )
391
- scheduler.start()
392
 
393
  demo.queue(
394
  default_concurrency_limit=20,
 
166
  concurrency_limit=20,
167
  )
168
 
169
+ gr.DuplicateButton(value="Duplicate Space for private use", elem_id="duplicate-button")
170
+
171
  gr.Markdown("The target papers are collected from [Hugging Face πŸ€— Daily Papers](https://huggingface.co/papers) on a daily basis. "
172
  "The entire data is generated by [Google's Gemini 1.0](https://deepmind.google/technologies/gemini/) Pro. "
173
  "If you are curious how it is done, visit the [Auto Paper Q&A Generation project repository](https://github.com/deep-diver/auto-paper-analysis) "
 
390
  ],
391
  start_date=start_date
392
  )
393
+ # scheduler.start()
394
 
395
  demo.queue(
396
  default_concurrency_limit=20,
constants/styles.css CHANGED
@@ -196,4 +196,11 @@ h3 {
196
  @media only screen and (max-width: 1000px) {
197
  margin-left: 0px;
198
  }
 
 
 
 
 
 
 
199
  }
 
196
  @media only screen and (max-width: 1000px) {
197
  margin-left: 0px;
198
  }
199
+ }
200
+
201
+ #duplicate-button {
202
+ margin: auto;
203
+ color: white;
204
+ background: #1565c0;
205
+ border-radius: 100vh;
206
  }