Agently Daily News Collector v4
Agently Daily News Collector has been rewritten on top of Agently v4 and now uses:
TriggerFlowfor the end-to-end pipeline- Agently v4 built-in
SearchandBrowsetools - structured output contracts instead of the old v3 workflow API
Version constraint: this project requires Agently v4.0.8.3 or newer. The current implementation uses
TriggerFlow sub flowto organize per-column pipelines, so earlier v4 releases are not compatible with the workflow structure used here.
The previous Agently v3 project has been archived under ./v3.
Features
- Input a topic and generate a multi-column news briefing automatically
- Search, shortlist, browse, summarize, and assemble stories in one flow
- Save the final report as Markdown under
./outputs - Keep prompt templates in
./promptsfor easy editing - Keep an independent
./toolslayer so search/browse can be replaced without touching the main workflow - Keep flow construction in
./workflowso orchestration can evolve independently from collector logic
Quick Start
- Install dependencies:
pip install -r requirements.txt
If you install Agently manually, make sure you use at least:
pip install "agently>=4.0.8.3"
- Edit
SETTINGS.yaml:
- Keep the model block as environment placeholders
- Export the required environment variables:
export AGENTLY_NEWS_BASE_URL="https://api.openai.com/v1"
export AGENTLY_NEWS_MODEL="gpt-4.1-mini"
export AGENTLY_NEWS_API_KEY="your_api_key"