Get Report
deerflow_get_reportFetch a DeerFlow thread's synthesized report, including assistant message, title, artifact paths, run status, and report source after a run completes.
Instructions
Fetch the synthesized report for a DeerFlow thread: the most recent assistant message, its title, and any produced artifact file paths. Resolves the report text through a fallback chain (run messages → thread state → summary) and, when no assistant message exists, auto-inlines the first text artifact (≤256 KB) as the report. Also reports the run's terminal status and where the text came from (report_source). Call after a run reaches a terminal status. Optionally pass run_id to scope the report to a specific run.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | No | Optional run id to scope the report to a specific run. | |
| thread_id | Yes | The thread id. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | ||
| report | Yes | ||
| web_url | Yes | ||
| terminal | No | ||
| artifacts | Yes | ||
| run_status | No | ||
| summary_text | No | ||
| artifact_note | No | ||
| report_source | No |