edli commited on
Commit
0f9694e
Β·
verified Β·
1 Parent(s): f0358f3

added bibtex info

Browse files
Files changed (1) hide show
  1. app.py +14 -6
app.py CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
4
  title = "`freephdlabor`: customizing your own research lab to do scientific research in your field 24/7"
5
 
6
  description = """
7
- **Free PhD Labor** is a fully customizable multiagent framework with dynamic workflows for autonomous scientific research - from idea to publication.
8
 
9
  Build your personalized AI research group that automates continual, interactive scientific research.
10
 
@@ -15,7 +15,7 @@ Build your personalized AI research group that automates continual, interactive
15
  - **End-to-End Automation**: From idea conception to LaTeX-formatted papers with figures and citations
16
 
17
  ### Links
18
- - πŸ“„ [arXiv Paper](https://arxiv.org/abs/2510.15624)
19
  - πŸ’» [GitHub Repository](https://github.com/ltjed/freephdlabor)
20
  - πŸ“ [Blog Post](https://freephdlabor.github.io)
21
  """
@@ -35,15 +35,23 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
35
  </div>
36
  """)
37
 
38
- gr.Markdown("## πŸ“„ Research Paper")
39
  gr.Markdown("""
40
- **Paper Title:** Build Your Personalized Research Group: A Multiagent Framework for Continual and Interactive Science Automation
41
 
42
  [View PDF on arXiv](https://arxiv.org/pdf/2510.15624)
43
  """)
44
 
45
- gr.Markdown("---")
46
- gr.Markdown("freephdlabor team")
 
 
 
 
 
 
 
 
47
 
48
  if __name__ == "__main__":
49
  demo.launch()
 
4
  title = "`freephdlabor`: customizing your own research lab to do scientific research in your field 24/7"
5
 
6
  description = """
7
+ **freephdlabor** is a fully customizable multiagent framework with dynamic workflows for autonomous scientific research - from idea to publication.
8
 
9
  Build your personalized AI research group that automates continual, interactive scientific research.
10
 
 
15
  - **End-to-End Automation**: From idea conception to LaTeX-formatted papers with figures and citations
16
 
17
  ### Links
18
+ - πŸ“„ [technical report](https://arxiv.org/abs/2510.15624)
19
  - πŸ’» [GitHub Repository](https://github.com/ltjed/freephdlabor)
20
  - πŸ“ [Blog Post](https://freephdlabor.github.io)
21
  """
 
35
  </div>
36
  """)
37
 
38
+ gr.Markdown("## πŸ“„ Technical Report")
39
  gr.Markdown("""
40
+ **Technical Report Title:** Build Your Personalized Research Group: A Multiagent Framework for Continual and Interactive Science Automation
41
 
42
  [View PDF on arXiv](https://arxiv.org/pdf/2510.15624)
43
  """)
44
 
45
+ gr.Markdown("## πŸ“ Citation")
46
+ gr.Code("""@misc{li2025buildpersonalizedresearchgroup,
47
+ title={Build Your Personalized Research Group: A Multiagent Framework for Continual and Interactive Science Automation},
48
+ author={Ed Li and Junyu Ren and Xintian Pan and Cat Yan and Chuanhao Li and Dirk Bergemann and Zhuoran Yang},
49
+ year={2025},
50
+ eprint={2510.15624},
51
+ archivePrefix={arXiv},
52
+ primaryClass={cs.AI},
53
+ url={https://arxiv.org/abs/2510.15624},
54
+ }""", language="bibtex", label="BibTeX")
55
 
56
  if __name__ == "__main__":
57
  demo.launch()