연락처 📫
이 저장소의 주요 기여자는 2026년 졸업 예정 석사과정생입니다. 협업이나 기회가 있으시면 언제든 연락해 주세요.>
本仓库的主要贡献者是一名 2026 届硕士毕业生,欢迎联系合作或交流机会。
새 소식 📅
- [2026/03]: 이제 CLI를 지원하며, 파인튜닝된 모델을 Hugging Face 🤗에 공개했습니다!
- [2026/01]: 자유형 및 템플릿 생성이 PPTX 내보내기를 지원하고, 오프라인 모드도 추가되었습니다! 컨텍스트 오버플로 방지를 위한 컨텍스트 관리 기능도 추가되었습니다.
- [2025/12]: 🔥 V2 주요 업데이트 릴리즈 - 심층 연구 통합, 자유형 비주얼 디자인, 자율적 에셋 생성, 텍스트-이미지 생성, 샌드박스 및 20개+ 도구가 포함된 에이전트 환경 제공.
- [2025/09]: 🛠️ MCP 서버 지원 추가 - 설정 세부사항은 MCP Server 참고
- [2025/09]: 🚀 주요 업데이트 포함된 v2 릴리즈 - 세부사항은 릴리즈 노트 참고
- [2025/08]: 🎉 논문이 EMNLP 2025에 채택되었습니다!
- [2025/05]: ✨ V1 주요 기능 출시 및 🌟 돌파: GitHub 스타 1,000개 달성! - 세부사항은 릴리즈 노트 참고
- [2025/01]: 🔓 코드베이스 오픈소스화, 실험 코드는 experiment release에서 보관
사용법 📖
[!중요]
윈도우는 지원하지 않습니다. 윈도우 사용자는 WSL을 이용해 주세요.>
의존성 및 환경 구성이 올바른지 확인하려면 CLI 및 최소 작업부터 시작하는 것을 권장합니다.
설정
CLI를 사용하는 경우 pptagent onboard 명령이 설정 생성을 대화식으로 도와줍니다. Docker Compose나 소스 빌드 시에는 직접 준비해야 합니다:
cp deeppresenter/config.yaml.example deeppresenter/config.yaml
cp deeppresenter/mcp.json.example deeppresenter/mcp.json#### 품질 향상을 위한 선택적 서비스
다음 서비스들은 생성 품질을 눈에 띄게 향상시킬 수 있으며, 특히 연구 심도, PDF 파싱, 시각적 자산 생성에 효과적입니다:
- Tavily: 웹 검색 품질을 개선합니다. tavily.com에서 API 키를 신청한 후,
deeppresenter/mcp.json파일의TAVILY_API_KEY에 설정하세요. - MinerU: PDF 파싱 품질을 개선합니다. mineru.net에서 API 키를 신청하여
deeppresenter/mcp.json파일의MINERU_API_KEY에 설정하거나, MinerU를 로컬로 배포한 후MINERU_API_URL을 대신 설정할 수 있습니다. - 텍스트-이미지 모델: 이미지 생성 품질을 개선합니다.
deeppresenter/config.yaml파일의t2i_model을 설정하세요.
deeppresenter/config.yaml 파일에 offline_mode: true를 설정하여 웹 검색 등 네트워크 의존 도구의 로드를 피할 수 있습니다.더 많은 설정 변수는 constants.py에서 확인할 수 있습니다.
1. 개인 사용 / OpenClaw 통합: CLI
[!NOTE]
macOS에서는 CLI가 Homebrew, Node.js, Docker, poppler, Playwright, llama.cpp 등 여러 로컬 의존성을 자동으로 설치할 수 있습니다.>
Linux에서는 환경을 직접 준비해야 합니다.
가장 빠른 로컬 설정을 원하거나 CLI를 통해 DeepPresenter를 OpenClaw에 연결하고 싶을 때 이 모드를 사용하세요.
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | shFirst-time interactive setup
uvx pptagent onboardGenerate a presentation
uvx pptagent generate "Single Page with Title: Hello World" -o hello.pptxGenerate with attachments
uvx pptagent generate "Q4 Report" \
-f data.xlsx \
-f charts.pdf \
-p "10-12" \
-o report.pptx| 명령어 | 설명 |
| -------------------- | -------------------------------------------------- |
| pptagent onboard | 대화형 구성 마법사 |
| pptagent generate | 프레젠테이션 생성 |
| pptagent config | 현재 구성 보기 |
| pptagent reset | 구성 초기화 |
| pptagent serve | CLI에서 사용하는 로컬 추론 서비스 시작 |
2. 최소 설정 / 개발: 소스에서 빌드
개발 중에 가장 작은 추상화 계층과 의존성에 대한 완전한 제어를 원할 경우 이 모드를 사용하세요.
uv pip install -e .
playwright install-deps
playwright install chromium
npm install --prefix deeppresenter/html2pptx
modelscope download forceless/fasttext-language-iddocker pull forceless/deeppresenter-sandbox
docker pull forceless/deeppresenter-host
docker tag forceless/deeppresenter-sandbox deeppresenter-sandbox
or build from dockerfile
docker build -t deeppresenter-sandbox -f deeppresenter/docker/SandBox.Dockerfile .앱을 시작하세요:
python webui.py3. 서버 배포: Docker Compose
명확한 의존성이 있는 안정적인 서버 환경을 위해 이 모드를 사용하세요.
# Pull the public images to avoid build from source
docker pull forceless/deeppresenter-sandbox
docker tag forceless/deeppresenter-sandbox deeppresenter-sandboxOr build from source
docker build -t deeppresenter-sandbox -f deeppresenter/docker/SandBox.Dockerfile .Start the host service
docker compose up -dThe service exposes the web UI on http://localhost:7861.
Case Study 💡
- #### Prompt: Please present the given document to me.










- #### Prompt: 请介绍小米 SU7 的外观和价格






- #### Prompt: 请制作一份高中课堂展示课件,主题为“解码立法过程:理解其对国际关系的影响”














기여자 🌟
|
Force1ess |
Puelloc |
hongyan |
Dnoob |
|
|
KurisuMakiseSame |
Angelen |
BrandonHu |
Eliot White |
EvolvedGhost |
|
ISCAS-zwl |
James Brown |
JunZhang |
Open AI Tx |
Sense_wang |
|
SuYao |
Zakir Jiwani |
Zhenyu |
lnennnn |
인용 🙏
이 프로젝트가 도움이 되었다면, 아래 인용문을 사용해 주세요:
@inproceedings{zheng-etal-2025-pptagent,
title = "{PPTA}gent: Generating and Evaluating Presentations Beyond Text-to-Slides",
author = "Zheng, Hao and
Guan, Xinyan and
Kong, Hao and
Zhang, Wenkai and
Zheng, Jia and
Zhou, Weixiang and
Lin, Hongyu and
Lu, Yaojie and
Han, Xianpei and
Sun, Le",
editor = "Christodoulopoulos, Christos and
Chakraborty, Tanmoy and
Rose, Carolyn and
Peng, Violet",
booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2025",
address = "Suzhou, China",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2025.emnlp-main.728/",
doi = "10.18653/v1/2025.emnlp-main.728",
pages = "14413--14429",
ISBN = "979-8-89176-332-6",
abstract = "Automatically generating presentations from documents is a challenging task that requires accommodating content quality, visual appeal, and structural coherence. Existing methods primarily focus on improving and evaluating the content quality in isolation, overlooking visual appeal and structural coherence, which limits their practical applicability. To address these limitations, we propose PPTAgent, which comprehensively improves presentation generation through a two-stage, edit-based approach inspired by human workflows. PPTAgent first analyzes reference presentations to extract slide-level functional types and content schemas, then drafts an outline and iteratively generates editing actions based on selected reference slides to create new slides. To comprehensively evaluate the quality of generated presentations, we further introduce PPTEval, an evaluation framework that assesses presentations across three dimensions: Content, Design, and Coherence. Results demonstrate that PPTAgent significantly outperforms existing automatic presentation generation methods across all three dimensions."
}@misc{zheng2026deeppresenterenvironmentgroundedreflectionagentic,
title={DeepPresenter: Environment-Grounded Reflection for Agentic Presentation Generation},
author={Hao Zheng and Guozhao Mo and Xinru Yan and Qianhao Yuan and Wenkai Zhang and Xuanang Chen and Yaojie Lu and Hongyu Lin and Xianpei Han and Le Sun},
year={2026},
eprint={2602.22839},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2602.22839},
}
--- Tranlated By Open Ai Tx | Last indexed: 2026-04-09 ---