2026-08-28 19:38:14 -04:00
# News pipeline — scraper + local Ollama summarizer
2026-08-24 17:28:46 -04:00
The OSINT dashboard ingests ~257 global news RSS sources hourly and produces
2026-08-27 23:51:13 -04:00
an English LLM brief plus flagged ticker/map rows. Both services were vendored
from the upstream `~/Projects/newsPipeline` project and re-integrated here to
replace the old k8s CronJob choreography with in-compose scheduling against
2026-08-28 19:38:14 -04:00
the EXISTING osint-db — **no second Postgres** . The LLM is **local Ollama**
(`LLM_URL` , default `http://127.0.0.1:11434` ) — the newsPipeline `local_llm`
path (`POST /api/generate` ). No API key.
2026-08-24 17:28:46 -04:00
## Architecture
```
257 RSS feeds (news/scraper/urls.txt)
│
▼
news-scraper (Scrapy, hourly :00) ──► articles table (osint-db)
│ │
│ ▼
2026-08-28 19:38:14 -04:00
news-summarizer (Ollama map-reduce, :05) ──► article_summaries + news_items
2026-08-24 17:28:46 -04:00
│
▼
2026-08-27 23:51:13 -04:00
GET /api/news · /api/news/summaries · /api/news/ticker · /api/news/map
GET /api/news/models · GET/PUT /api/settings
2026-08-24 17:28:46 -04:00
```
| Component | Image | Container | Scheduling |
|---|---|---|---|
| Scraper | `localhost/osint-news-scraper` | `osint-news-scraper` | wall-clock loop, minute `NEWS_SCRAPE_MINUTE` (default :00) |
| Summarizer | `localhost/osint-news-summarizer` | `osint-news-summarizer` | wall-clock loop, minute `NEWS_SUMMARIZE_MINUTE` (default :05) |
Both services live under the `ingest` compose profile (same as the ingester
and camera-scraper): `docker compose --profile ingest up -d` .
2026-08-27 23:51:13 -04:00
The summarizer is a batch sidecar, **not** a live overlay. Do **not** reuse
`GET /api/alerts` (dashboard entity/keyword alerts). Do **not** stuff news
into `overlay_catalog()` — `/api/map/layers` `overlays` stays live upstream
feeds (`GET /api/news` exact key set is unchanged on purpose).
2026-08-24 17:28:46 -04:00
## Data flow
1. **Scraper** — `news/scraper/run_news_scraper.py` runs
`scrapy crawl articles` (spider `news/scraper/newsScraper/spiders/news_spider.py` )
at the top of each hour. The spider reads the RSS feed URLs from `urls.txt` ,
follows each `<item>` link, extracts the main article body, and the
`PostgresPipeline` writes to `articles` with URL-based dedup
(`ON CONFLICT (url) DO NOTHING` ).
2. **Summarizer** — `news/summerizer/run_news_summarizer.py` runs
`summarizer.py` at :05 past each hour. It reads articles from the last
2026-08-28 19:38:14 -04:00
`SUMMARY_WINDOW_HOURS` , map-reduces them through local Ollama
(`SUMMARY_MODEL` / Settings, default `qwen3:30b-a3b` ), writes the English
2026-08-27 23:51:13 -04:00
brief to `article_summaries` (column `model` is the LLM id), and flagged
ticker/map rows to `news_items` .
2026-08-24 17:28:46 -04:00
Scheduling is done with small in-compose wall-clock loops (not host cron): each
loop runs once on boot (`*_RUN_ON_START=1` , seeds data fast) then sleeps until
the next scheduled minute. The loop is serial, so a run that overruns its slot
simply shifts to the next boundary — two crawls/summaries never overlap.
2026-08-27 23:51:13 -04:00
Hour-truncation idempotency: if `article_summaries` already has a row for the
current UTC hour, the summarizer **skips** (prevents double-pins on
`RUN_ON_START` recreate). Set `NEWS_SUMMARIZE_FORCE=1` to ignore that skip.
2026-08-24 17:28:46 -04:00
The `articles` and `article_summaries` tables are created by the idempotent
alembic migration `003_news` (also created by the scraper's own
2026-08-27 23:51:13 -04:00
`CREATE TABLE IF NOT EXISTS` ). `news_items` is alembic `005_news_items` .
Container startup order doesn't matter.
## Keys and Settings
2026-08-28 19:38:14 -04:00
- **No API key.** Ollama on the GPU host; the summarizer container calls
`LLM_URL` (`POST /api/generate` , `GET /api/tags` ).
- **Idle without Ollama** — if `/api/tags` is down or the chosen model is not
pulled, the summarizer logs and idles (never crashes). News intel APIs
return `[]` .
2026-08-27 23:51:13 -04:00
- **Model** — non-secret. Settings UI model selector `PUT /api/settings`
`{ "summary_model": "…" }` stores `SUMMARY_MODEL` in `app_settings` (1– 128
2026-08-28 19:38:14 -04:00
chars). `GET /api/settings` echoes `{summary_model, llm_url}` .
`llm_url` is read-only. Default `qwen3:30b-a3b` . Live catalog is
best-effort `GET /api/news/models` (`GET {LLM_URL}/api/tags` ).
2026-08-24 17:28:46 -04:00
## Endpoints
### GET /api/news — recent articles
2026-08-27 23:51:13 -04:00
Key set **unchanged** (no `lat` /`lon` on articles; geo lives on `/api/news/map` ).
2026-08-24 17:28:46 -04:00
| Query param | Meaning | Default |
|---|---|---|
| `domain` | filter by source domain (e.g. `www.reuters.com` ) | none |
| `since` | only articles captured at/after this UTC instant (ISO-8601) | none |
| `limit` | max rows | `50` (max `500` ) |
| `offset` | pagination offset | `0` |
2026-08-27 23:51:13 -04:00
| `include_content` | include full article body | `false` |
2026-08-24 17:28:46 -04:00
```json
[
{
"id": 1,
"title": "…",
"url": "https://…",
2026-08-27 23:51:13 -04:00
"content": null,
2026-08-24 17:28:46 -04:00
"domain": "www.reuters.com",
"timestamp": "2026-08-24T18:10:00Z"
}
]
```
2026-08-27 23:51:13 -04:00
### GET /api/news/summaries — master LLM briefs
2026-08-24 17:28:46 -04:00
| Query param | Meaning | Default |
|---|---|---|
| `since` | only summaries generated at/after this UTC instant | none |
| `limit` | max rows | `20` (max `100` ) |
| `offset` | pagination offset | `0` |
```json
[
{
"id": 1,
2026-08-27 23:51:13 -04:00
"summary_text": "English markdown brief…",
"batch_timestamp": "2026-08-24T18:10:00Z",
"model": "Hermes-4.3-36B"
}
]
```
`model` is additive. Empty DB → `[]` (no crash).
### GET /api/news/ticker — flagged HUD headlines
Critical/high `news_items` with `kind=ticker` only. Do **not** reuse
`GET /api/alerts` . Bottom HUD `#nt-track` scrolls these rows, not a dump of
the whole brief.
| Query param | Meaning | Default |
|---|---|---|
| `since` | only items created at/after this UTC instant | none |
| `limit` | max rows | `20` (max `50` ) |
```json
[
{
"id": 1,
"headline": "…",
"importance": "critical",
"location_name": "Kyiv",
"url": "https://…",
"created_at": "2026-08-24T18:10:00Z"
}
]
```
### GET /api/news/map — geolocated critical/high pins
Only rows with valid `lat` /`lon` . Optional bbox. **No zoom skip** — world
view is the point. Layer-panel toggle uses this dedicated path (same as
event blips), not `overlay_catalog` .
| Query param | Meaning | Default |
|---|---|---|
| `bbox` | `minlon,minlat,maxlon,maxlat` | all flagged pins |
| `since` | only items created at/after this UTC instant | last 24 hours |
| `limit` | max rows | `200` (max `500` ) |
Malformed bbox → `422` .
```json
[
{
"id": 1,
"headline": "…",
"importance": "high",
"location_name": "Kyiv",
"lat": 50.45,
"lon": 30.52,
"location_confidence": "city",
"category": "military/conflict",
"url": "https://…",
"created_at": "2026-08-24T18:10:00Z"
2026-08-24 17:28:46 -04:00
}
]
```
2026-08-27 23:51:13 -04:00
Pins are LLM-estimated and clamped (`lat∈[-90,90]` , `lon∈[-180,180]` ). No
Nominatim. No writes into `events` .
### GET /api/news/models — Settings dropdown catalog
Never 502s. `{ "source": "live"|"fallback", "models": [{"id": "…"}] }` .
### GET /api/settings · PUT /api/settings
```json
2026-08-28 19:38:14 -04:00
{ "summary_model": "qwen3:30b-a3b", "llm_url": "http://127.0.0.1:11434" }
2026-08-27 23:51:13 -04:00
```
2026-08-28 19:38:14 -04:00
PUT body is `{ "summary_model": "<1– 128 char id>" }` . `llm_url` is
2026-08-27 23:51:13 -04:00
ignored even if sent.
## Reduce JSON contract
2026-08-28 19:38:14 -04:00
Reduce phase (`format: json` on Ollama generate, English only) must be a single
2026-08-27 23:51:13 -04:00
object. Parser (`intel.parse_reduce_json` ) strips `<think>…</think>` and
markdown json fences, then brace-slices:
```json
{
"summary_en": "English markdown brief or the no-qualifying-events sentence",
"ticker": [
{"headline": "", "importance": "critical", "url": "", "location_name": ""}
],
"map_items": [
{
"headline": "",
"importance": "critical",
"location_name": "",
"lat": 0,
"lon": 0,
"location_confidence": "city",
"category": "military/conflict",
"url": ""
}
]
}
```
Persist ticker/map only for `importance` in `critical` /`high` . Map rows also
need valid coords; Unknown / invented places are dropped. Caps: 12 ticker
(≤140 chars, no markdown), 20 map. Empty ticker is allowed. `summary_en`
lands in `article_summaries.summary_text` .
2026-08-24 17:28:46 -04:00
## Configuration (all via env / `.env`)
| Var | Default | Notes |
|---|---|---|
2026-08-28 19:38:14 -04:00
| `LLM_URL` | `http://127.0.0.1:11434` | Ollama origin. Pi container must point at the GPU host (e.g. Tailscale). Compose leaves this empty so `.env` wins. |
| `SUMMARY_MODEL` | `qwen3:30b-a3b` | Leave compose unset so Settings → `app_settings.SUMMARY_MODEL` reaches the worker. Env wins when set. |
2026-08-27 23:51:13 -04:00
| `NEWS_BATCH_SIZE` | `50` | Articles per map-phase batch (compose maps to container `BATCH_SIZE` ). |
2026-08-24 17:28:46 -04:00
| `SUMMARY_WINDOW_HOURS` | `1` | How far back the summarizer looks for new articles. |
| `INCLUDE_FUTURES` | `0` | Legacy futures-prices coupling (upstream pipeline). OFF for OSINT; set `1` + install `yfinance` to enable. |
| `NEWS_SCRAPE_MINUTE` | `0` | Wall-clock minute the scraper fires. |
| `NEWS_SUMMARIZE_MINUTE` | `5` | Wall-clock minute the summarizer fires. |
| `NEWS_SCRAPE_RUN_ON_START` | `1` | Run one scrape immediately on container start. |
| `NEWS_SUMMARIZE_RUN_ON_START` | `1` | Run one summarize immediately on container start. |
2026-08-27 23:51:13 -04:00
| `NEWS_SUMMARIZE_FORCE` | `0` | `1` ignores the current-UTC-hour idempotency skip (double-pins on recreate). |
2026-08-24 17:28:46 -04:00
| `NEWS_LOG_LEVEL` | `INFO` | Scrapy log level. |
2026-08-28 19:38:14 -04:00
| `OSINT_USER_AGENT` | `osint-dashboard-news-summarizer` | Sent on every outbound Ollama call. |
2026-08-24 17:28:46 -04:00
| `TELEGRAM_TOKEN` / `TELEGRAM_CHAT_ID` | *(blank)* | Reserved for the (out-of-scope) Telegram delivery bot. |
DB_* for both services is mapped to the shared osint-db credentials
(`DB_HOST=db` , same `DB_USER/DB_PASSWORD/DB_NAME` as the rest of the stack).
2026-08-28 19:38:14 -04:00
Ollama generate: `POST {LLM_URL}/api/generate` via `news/summerizer/ollama_client.py`
(`httpx` , no `ollama` Python SDK). No API key. Reduce uses `format: json` .
2026-08-27 23:51:13 -04:00
2026-08-24 17:28:46 -04:00
## Prompts
Both prompts are env-overridable — the default `MAP_PROMPT` is OSINT-neutral
2026-08-27 23:51:13 -04:00
(facts, locations, entities, category, OSINT signal per article; English) and
the default `SUMMARY_PROMPT` demands the reduce JSON above (with a
"no qualifying events" escape hatch). Upstream's futures/markets prompt
language is gated behind `INCLUDE_FUTURES=1` .
2026-08-24 17:28:46 -04:00
## Tests
```bash
2026-08-27 23:51:13 -04:00
PYTHONPATH=news/summerizer pytest news/summerizer/tests -v
2026-08-28 19:38:14 -04:00
# intel + ollama_client tests PASS (no network)
2026-08-27 23:51:13 -04:00
2026-08-28 00:02:51 -04:00
PYTHONPATH=app pytest tests/test_api_news.py \
2026-08-27 23:51:13 -04:00
tests/test_api_settings.py tests/test_api_live_layers.py -v
# DB-marked tests skip without Postgres; live_layers must still PASS
# /api/map/layers overlays key set UNCHANGED
2026-08-24 17:28:46 -04:00
```
## Live verification
2026-08-27 23:51:13 -04:00
After deploy / compose rebuild of `news-summarizer` on the Pi:
2026-08-28 19:38:14 -04:00
1. Run Ollama on the GPU host and pull the model (`ollama pull qwen3:30b-a3b` ).
2. Set `LLM_URL` on the Pi to that host (Tailscale IP + `:11434` ).
3. Settings: pick a model → Save → `GET /api/settings` echoes it.
4. `docker compose --profile ingest logs -f news-summarizer` — next run (or
2026-08-27 23:51:13 -04:00
`NEWS_SUMMARIZE_RUN_ON_START=1` recreate) logs `Processing N articles with <model>` .
2026-08-28 19:38:14 -04:00
5. `curl -s localhost:8000/api/news/summaries?limit=1` — English `summary_text` , `model` set.
6. `curl -s localhost:8000/api/news/ticker` — flagged headlines only.
7. `curl -s localhost:8000/api/news/map` — only rows with lat/lon.
8. HUD: NEWS ticker scrolls flagged items; map overlay pins popup with location.
9. Ollama down / model missing → summarizer logs idle, APIs return `[]` , no crash.
**Operator action after merge:** start Ollama on the laptop GPU, set `LLM_URL`
in Pi `.env` , pick a model in Settings if the default `qwen3:30b-a3b` is not
wanted; rebuild `osint-news-summarizer` on the Pi (`pi-app-deploy` / compose).