Skip to content

Commit eee92de

Browse files
Feat: add DocResearch app (#686)
1. Add gradio app, support for local-mode and ModelScope studio deployment 2. Add project readme 3. Add cli for Doc Research: ms-agent app --doc_research
1 parent 804602c commit eee92de

12 files changed

Lines changed: 2937 additions & 5 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,5 @@ ast_index_file.py
154154
.neo4j.lock
155155
neo4j.lock
156156
/temp/
157+
158+
/temp_workspace

README.md

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,14 @@ MS-Agent is a lightweight framework designed to empower agents with autonomous e
4848

4949
## 🎉 News
5050

51-
* 🔥July 18, 2025: Release MS-Agent v1.0.0, improve the experience of Agent chat with MCP, and update the readme for [Agentic Insight](projects/deep_research/README.md).
51+
* 🚀July 31, 2025: Release MS-Agent v1.1.0, which includes the following updates:
52+
- 🔥 Support [Doc Research](projects/doc_research/README.md), demo: [DocResearchStudio](https://modelscope.cn/studios/ms-agent/DocResearch)
53+
- Add `General Web Search Engine` for Agentic Insight (DeepResearch)
54+
- Add `Max Continuous Runs` for Agent chat with MCP.
5255

53-
* 🔥July 16, 2025: Release MS-Agent v1.0.0rc0, which includes the following updates:
56+
* 🚀July 18, 2025: Release MS-Agent v1.0.0, improve the experience of Agent chat with MCP, and update the readme for [Agentic Insight](projects/deep_research/README.md).
57+
58+
* 🚀July 16, 2025: Release MS-Agent v1.0.0rc0, which includes the following updates:
5459
- Support for Agent chat with MCP (Model Context Protocol)
5560
- Support for Deep Research (Agentic Insight), refer to: [Report_Demo](projects/deep_research/examples/task_20250617a/report.md), [Script_Demo](projects/deep_research/run.py)
5661
- Support for [MCP-Playground](https://modelscope.cn/mcp/playground)
@@ -97,7 +102,7 @@ pip install ms-agent
97102
### Install from source
98103

99104
```shell
100-
git clone git@github.com:modelscope/ms-agent.git
105+
git clone https://github.com/modelscope/ms-agent.git
101106

102107
cd ms-agent
103108
pip install -e .
@@ -204,6 +209,39 @@ So, how are external electric fields typically simulated in theoretical calculat
204209
205210
For more details, please refer to [Deep Research](projects/deep_research/README.md).
206211
212+
<br>
213+
214+
### Doc Research
215+
216+
This project provides a framework for **Doc Research**, enabling agents to autonomously explore and execute complex tasks related to document analysis and research.
217+
218+
#### Features
219+
220+
- 🔍 **Deep Document Research** - Support deep analysis and summarization of documents
221+
- 📝 **Multiple Input Types** - Support multi-file uploads and URL inputs
222+
- 📊 **Multimodal Reports** - Support text and image reports in Markdown format
223+
- 🚀 **High Efficiency** - Leverage powerful LLMs for fast and accurate research, leveraging key information extraction techniques to further optimize token usage
224+
- ⚙️ **Flexible Deployment** - Support local run and [ModelScope Studio](https://modelscope.cn/studios)
225+
- 💰 **Free Model Inference** - Free LLM API inference calls for ModelScope users, refer to [ModelScope API-Inference](https://modelscope.cn/docs/model-service/API-Inference/intro)
226+
227+
228+
#### Demo
229+
230+
**1. ModelScope Studio**
231+
[DocResearchStudio](https://modelscope.cn/studios/ms-agent/DocResearch)
232+
233+
**2. Local Gradio Application**
234+
235+
* Research Report for [Numina Math](http://faculty.bicmr.pku.edu.cn/~dongbin/Publications/numina_dataset.pdf)
236+
<div align="center">
237+
<img src="https://github.com/user-attachments/assets/4c1cea67-bef1-4dc1-86f1-8ad299d3b656" alt="LocalGradioApplication" width="750">
238+
<p><em>Demo: Numina Math Research Report</em></p>
239+
</div>
240+
241+
242+
For more details, refer to [Doc Research](projects/doc_research/README.md),
243+
244+
<br>
207245
208246
## License
209247

ms_agent/app/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)