Skip to content

Commit d097415

Browse files
committed
Update paper reference for Deep Researcher plugin
Changed all references from 'A Statistical Framework for Deep Researcher' to 'Deep Researcher with Test-Time Diffusion' and updated the associated arXiv URL in README, research_engine.py, and deep_research_plugin.py for accuracy and consistency.
1 parent 70c01af commit d097415

File tree

3 files changed

+7
-22
lines changed

3 files changed

+7
-22
lines changed

optillm/plugins/deep_research/README.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,7 @@
22

33
## Overview
44

5-
The Deep Research plugin implements the **Test-Time Diffusion Deep Researcher (TTD-DR)** algorithm, a state-of-the-art approach for comprehensive research report generation. This implementation is based on the paper ["A Statistical Framework for Deep Researcher"](https://arxiv.org/html/2507.16075v1) and provides iterative, in-depth research capabilities for complex queries.
6-
7-
## Paper Citation
8-
9-
```bibtex
10-
@article{ttd_dr_2024,
11-
title={A Statistical Framework for Deep Researcher},
12-
author={[Paper Authors]},
13-
journal={arXiv preprint arXiv:2507.16075},
14-
year={2024},
15-
url={https://arxiv.org/html/2507.16075v1}
16-
}
17-
```
5+
The Deep Research plugin implements the **Test-Time Diffusion Deep Researcher (TTD-DR)** algorithm, a state-of-the-art approach for comprehensive research report generation. This implementation is based on the paper ["Deep Researcher with Test-Time Diffusion"](https://arxiv.org/abs/2507.16075v1) and provides iterative, in-depth research capabilities for complex queries.
186

197
## Algorithm Overview
208

@@ -252,6 +240,3 @@ When contributing to the Deep Research plugin:
252240
4. Test with various query types and complexity levels
253241
5. Document any new configuration options
254242

255-
## License
256-
257-
This implementation follows the same license as the OptILLM project and includes proper attribution to the original TTD-DR paper authors.

optillm/plugins/deep_research/research_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Deep Research Engine - Core Implementation
33
44
This module implements the Test-Time Diffusion Deep Researcher (TTD-DR) algorithm
5-
as described in "A Statistical Framework for Deep Researcher" (https://arxiv.org/html/2507.16075v1).
5+
as described in "Deep Researcher with Test-Time Diffusion" (https://arxiv.org/abs/2507.16075v1).
66
77
The TTD-DR approach treats research as a diffusion process with iterative refinement
88
through denoising and retrieval, generating comprehensive research reports.
@@ -26,7 +26,7 @@ class DeepResearcher:
2626
This class implements the paper's approach of treating research as a diffusion process
2727
with iterative refinement through denoising and retrieval.
2828
29-
Based on: https://arxiv.org/html/2507.16075v1
29+
Based on: https://arxiv.org/abs/2507.16075v1
3030
"""
3131

3232
def __init__(self, client, model: str, max_iterations: int = 5, max_sources: int = 10):

optillm/plugins/deep_research_plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Deep Research Plugin - OptILLM Plugin Interface
33
44
This plugin implements the Test-Time Diffusion Deep Researcher (TTD-DR) algorithm
5-
from the paper "A Statistical Framework for Deep Researcher".
5+
from the paper "Deep Researcher with Test-Time Diffusion".
66
7-
Paper: https://arxiv.org/html/2507.16075v1
7+
Paper: https://arxiv.org/abs/2507.16075v1
88
99
The plugin orchestrates web search, URL fetching, and memory synthesis to provide
1010
comprehensive research responses using an iterative refinement approach.
@@ -23,8 +23,8 @@ def run(system_prompt: str, initial_query: str, client, model: str, request_conf
2323
This plugin orchestrates web search, URL fetching, and memory synthesis to provide
2424
comprehensive research responses using an iterative refinement approach.
2525
26-
Based on: "A Statistical Framework for Deep Researcher"
27-
https://arxiv.org/html/2507.16075v1
26+
Based on: "Deep Researcher with Test-Time Diffusion"
27+
https://arxiv.org/abs/2507.16075v1
2828
2929
Args:
3030
system_prompt: System prompt for the conversation

0 commit comments

Comments
 (0)