Spaces:
Sleeping
Sleeping
File size: 2,318 Bytes
3f5bfb3 0f9694e 3f5bfb3 0f9694e 3f5bfb3 f0358f3 3f5bfb3 0f9694e 3f5bfb3 0f9694e 3f5bfb3 0f9694e dc6cf9c 3f5bfb3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
import gradio as gr
# Project information
title = "`freephdlabor`: customizing your own research lab to do scientific research in your field 24/7"
description = """
**freephdlabor** is a fully customizable multiagent framework with dynamic workflows for autonomous scientific research - from idea to publication.
Build your personalized AI research group that automates continual, interactive scientific research.
### Key Features
- **Dynamic Workflows**: Adapts in real-time to research findings
- **Fully Customizable**: Add/modify/remove agents with ease
- **Human-in-the-Loop**: Naturally integrates human feedback in real-time
- **End-to-End Automation**: From idea conception to LaTeX-formatted papers with figures and citations
### Links
- π [technical report](https://arxiv.org/abs/2510.15624)
- π» [GitHub Repository](https://github.com/ltjed/freephdlabor)
- π [Blog Post](https://freephdlabor.github.io)
"""
# Create Gradio interface
with gr.Blocks(theme=gr.themes.Soft()) as demo:
gr.Markdown(f"# {title}")
gr.Markdown(description)
gr.Markdown("## π₯ Demo Video")
gr.HTML("""
<div style="display: flex; justify-content: center;">
<iframe width="700" height="394" src="https://www.youtube.com/embed/xwG7dpUtues"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
""")
gr.Markdown("## π Technical Report")
gr.Markdown("""
**Technical Report Title:** Build Your Personalized Research Group: A Multiagent Framework for Continual and Interactive Science Automation
[View PDF on arXiv](https://arxiv.org/pdf/2510.15624)
""")
gr.Markdown("## π Citation")
gr.Code("""@misc{li2025buildpersonalizedresearchgroup,
title={Build Your Personalized Research Group: A Multiagent Framework for Continual and Interactive Science Automation},
author={Ed Li and Junyu Ren and Xintian Pan and Cat Yan and Chuanhao Li and Dirk Bergemann and Zhuoran Yang},
year={2025},
eprint={2510.15624},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2510.15624},
}""", language="latex", label="BibTeX")
if __name__ == "__main__":
demo.launch()
|