diff --git a/.DS_Store b/.DS_Store index 5008ddf..d2944c1 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/bioscancast/datasets/sources.yaml b/bioscancast/datasets/sources.yaml index dfa2a22..5a590d0 100644 --- a/bioscancast/datasets/sources.yaml +++ b/bioscancast/datasets/sources.yaml @@ -217,6 +217,11 @@ specific_pathogen_sources: url: "https://www.paho.org/en/topics/oropouche-virus-disease" geography: "Americas" + - id: "paho_oropouche_portal" + name: "ARBO Portal - Oropouche" + url: "https://www.paho.org/en/arbo-portal/arbo-portal-oropouche" + geography: "Americas" + enteric: cholera: - id: "who_cholera" diff --git a/bioscancast/main.py b/bioscancast/main.py index 178ff5d..fce187c 100644 --- a/bioscancast/main.py +++ b/bioscancast/main.py @@ -15,6 +15,7 @@ from __future__ import annotations import argparse +import json import logging import os import sys @@ -192,6 +193,11 @@ def _parse_args(argv: list[str]) -> argparse.Namespace: action="store_true", help="Disable the search-stage cache.", ) + parser.add_argument( + "--no-history-context", + action="store_true", + help="Disable prior-run forecast/insight context injection into forecasting.", + ) parser.add_argument( "--max-input-tokens", type=int, @@ -326,6 +332,175 @@ def _estimate_total_cost(per_model: dict[str, dict[str, int]]) -> tuple[float, l return total, warnings +def _build_forecast_history_context( + out_root: Path, + question_id: str, + current_run_id: str, + *, + max_runs: int = 5, +) -> str: + """Summarize prior forecast outputs for prompt context. + + Pulls previous ``forecast.json`` + ``question.json`` artifacts for this + question and emits a compact text block the forecasting prompt can use as + historical context. Failures are best-effort and silently skipped. + """ + qdir = out_root / question_id + if not qdir.exists() or not qdir.is_dir(): + return "" + + run_dirs = [p for p in qdir.iterdir() if p.is_dir() and p.name != current_run_id] + run_dirs.sort(key=lambda p: p.name, reverse=True) + + lines: list[str] = [] + for run_dir in run_dirs: + if len(lines) >= max_runs: + break + forecast_path = run_dir / "forecast.json" + question_path = run_dir / "question.json" + if not forecast_path.exists() or not question_path.exists(): + continue + + try: + forecast_payload = json.loads(forecast_path.read_text(encoding="utf-8")) + question_payload = json.loads(question_path.read_text(encoding="utf-8")) + except Exception: + continue + + as_of = question_payload.get("as_of_date") or "(none)" + distributions = forecast_payload.get("distributions") or [] + chosen = None + for d in distributions: + if d.get("forecast_source") == "bioscancast": + chosen = d + break + if chosen is None and distributions: + chosen = distributions[0] + if not chosen: + continue + + probs = chosen.get("probabilities") or {} + if not probs: + continue + top_option = max(probs, key=probs.get) + top_prob = float(probs[top_option]) + prob_parts = [f"{k}={float(v):.3f}" for k, v in probs.items()] + + rationale = "" + samples = forecast_payload.get("samples") or [] + for s in samples: + r = (s or {}).get("rationale") + if r: + rationale = str(r).strip() + break + if not rationale: + r = forecast_payload.get("baseline_rationale") + if r: + rationale = str(r).strip() + + if len(rationale) > 240: + rationale = rationale[:237].rstrip() + "..." + + line = ( + f"- as_of={as_of} run={run_dir.name}: " + f"top={top_option} ({top_prob:.3f}); probs: " + f"{', '.join(prob_parts)}" + ) + if rationale: + line += f"; rationale: {rationale}" + lines.append(line) + + return "\n".join(lines) + + +def _build_insight_history_context( + out_root: Path, + question_id: str, + current_run_id: str, + *, + max_runs: int = 3, + max_records_per_run: int = 3, +) -> str: + """Summarize prior insight extracts for prompt context. + + Each emitted line explicitly includes the prior scrape ``as_of`` date so + the forecasting model can distinguish historical snapshots from current + evidence. + """ + qdir = out_root / question_id + if not qdir.exists() or not qdir.is_dir(): + return "" + + run_dirs = [p for p in qdir.iterdir() if p.is_dir() and p.name != current_run_id] + run_dirs.sort(key=lambda p: p.name, reverse=True) + + lines: list[str] = [] + runs_added = 0 + for run_dir in run_dirs: + if runs_added >= max_runs: + break + insight_path = run_dir / "insight.json" + question_path = run_dir / "question.json" + if not insight_path.exists() or not question_path.exists(): + continue + + try: + insight_payload = json.loads(insight_path.read_text(encoding="utf-8")) + question_payload = json.loads(question_path.read_text(encoding="utf-8")) + except Exception: + continue + + as_of = question_payload.get("as_of_date") or "(none)" + records = insight_payload.get("records") or [] + if not isinstance(records, list) or not records: + continue + + kept = 0 + for rec in records: + if kept >= max_records_per_run: + break + if not isinstance(rec, dict): + continue + + metric_name = rec.get("metric_name") or "(none)" + metric_value = rec.get("metric_value") + if metric_value is None: + metric_value_text = "n/a" + else: + metric_value_text = str(metric_value) + event_type = rec.get("event_type") or "other" + location = rec.get("location") or "(unknown)" + summary = (rec.get("summary") or "").strip() + if len(summary) > 140: + summary = summary[:137].rstrip() + "..." + + quote = "" + sources = rec.get("sources") or [] + if isinstance(sources, list) and sources: + first = sources[0] + if isinstance(first, dict): + quote = (first.get("quote") or "").strip() + if len(quote) > 120: + quote = quote[:117].rstrip() + "..." + + line = ( + f"- past_scrape_as_of={as_of} run={run_dir.name}: " + f"event_type={event_type}, location={location}, " + f"metric={metric_name}, value={metric_value_text}" + ) + if summary: + line += f"; summary: {summary}" + if quote: + line += f"; quote: {quote}" + lines.append(line) + kept += 1 + + if kept > 0: + runs_added += 1 + + return "\n".join(lines) + + # ---------------------------------------------------------------------------- # Main pipeline # ---------------------------------------------------------------------------- @@ -402,6 +577,7 @@ def run_pipeline(args: argparse.Namespace) -> "ForecastResult | InsightRunResult "extraction": asdict(ExtractionConfig()), "insight": asdict(insight_config), "forecast": asdict(forecast_config), + "no_history_context": bool(args.no_history_context), }, "forecast_options": options, "forecast_options_source": options_source, @@ -513,12 +689,30 @@ def run_pipeline(args: argparse.Namespace) -> "ForecastResult | InsightRunResult if not args.no_forecast: with _stage_timer(manifest, "forecast"): + if args.no_history_context: + historical_context = "" + historical_insight_context = "" + else: + historical_context = _build_forecast_history_context( + out_root, + question.id, + run_id, + ) + historical_insight_context = _build_insight_history_context( + out_root, + question.id, + run_id, + ) forecast_pipeline = ForecastingPipeline( llm_client=shared_llm_raw, config=forecast_config, ) forecast_result = forecast_pipeline.run( - question, insight_result.records, options, + question, + insight_result.records, + options, + historical_context=historical_context, + historical_insight_context=historical_insight_context, ) persistence.save_forecast(run_dir, forecast_result) stage_usage["forecast"] = ( diff --git a/bioscancast/stages/extraction/custom_scrapers/_owid_common.py b/bioscancast/stages/extraction/custom_scrapers/_owid_common.py index 6a51de2..f7a33a4 100644 --- a/bioscancast/stages/extraction/custom_scrapers/_owid_common.py +++ b/bioscancast/stages/extraction/custom_scrapers/_owid_common.py @@ -33,6 +33,8 @@ import html import io import logging +import math +import statistics from dataclasses import dataclass from datetime import datetime, timezone from typing import Callable, Optional @@ -203,6 +205,89 @@ def _series_delta(series: list[tuple[datetime, float]], n_back: int) -> float | return series[-1][1] - series[-(n_back + 1)][1] +def _r2(y: list[float], yhat: list[float]) -> float: + if not y or len(y) != len(yhat): + return 0.0 + y_mean = sum(y) / len(y) + ss_res = sum((a - b) ** 2 for a, b in zip(y, yhat)) + ss_tot = sum((a - y_mean) ** 2 for a in y) + if ss_tot <= 0.0: + return 1.0 if ss_res <= 1e-12 else 0.0 + return max(0.0, min(1.0, 1.0 - (ss_res / ss_tot))) + + +def _fit_linear(values: list[float]) -> dict[str, float] | None: + if len(values) < 2: + return None + n = len(values) + xs = list(range(n)) + x_mean = sum(xs) / n + y_mean = sum(values) / n + denom = sum((x - x_mean) ** 2 for x in xs) + if denom <= 0.0: + return None + slope = sum((x - x_mean) * (y - y_mean) for x, y in zip(xs, values)) / denom + intercept = y_mean - (slope * x_mean) + yhat = [intercept + slope * x for x in xs] + return { + "intercept": float(intercept), + "slope": float(slope), + "r2": _r2(values, yhat), + } + + +def _fit_exponential(values: list[float]) -> dict[str, float] | None: + if len(values) < 2: + return None + points = [(idx, v) for idx, v in enumerate(values) if v > 0] + if len(points) < 2: + return None + + xs = [float(idx) for idx, _ in points] + ys = [float(v) for _, v in points] + ln_ys = [math.log(v) for v in ys] + + n = len(xs) + x_mean = sum(xs) / n + y_mean = sum(ln_ys) / n + denom = sum((x - x_mean) ** 2 for x in xs) + if denom <= 0.0: + return None + + b = sum((x - x_mean) * (y - y_mean) for x, y in zip(xs, ln_ys)) / denom + ln_a = y_mean - (b * x_mean) + a = math.exp(ln_a) + yhat = [a * math.exp(b * x) for x in xs] + return { + "a": float(a), + "b": float(b), + "r2": _r2(ys, yhat), + } + + +def _fmt_num(value: float | None, *, decimals: int = 2) -> str: + if value is None: + return "n/a" + if abs(value - round(value)) < 1e-9: + return f"{int(round(value)):,}" + return f"{value:,.{decimals}f}" + + +def _stats_summary(values: list[float]) -> str: + if not values: + return "n=0" + n = len(values) + mean = sum(values) / n + std = statistics.stdev(values) if n > 1 else 0.0 + min_v = min(values) + med = statistics.median(values) + max_v = max(values) + return ( + f"n={n}, mean={_fmt_num(mean)}, std={_fmt_num(std)}, " + f"min={_fmt_num(min_v)}, median={_fmt_num(med)}, max={_fmt_num(max_v)}" + ) + + def _cumulative_line(dataset: OWIDDataset, entity: str, dt: datetime, row: dict[str, str]) -> str: """One prose sentence stating an entity's cumulative figures as of a date.""" parts = [f"As of {dt.date().isoformat()}, {html.escape(entity)}:"] @@ -213,7 +298,13 @@ def _cumulative_line(dataset: OWIDDataset, entity: str, dt: datetime, row: dict[ return " ".join(parts).rstrip(";") -def _trend_table_html(dataset: OWIDDataset, entity: str, ordered_rows: list[tuple[datetime, dict[str, str]]]) -> list[str]: +def _trend_table_html( + dataset: OWIDDataset, + entity: str, + ordered_rows: list[tuple[datetime, dict[str, str]]], + *, + is_target_entity: bool, +) -> list[str]: cols = [c for c in dataset.trend_columns if ordered_rows and c in ordered_rows[-1][1]] if not cols: return [] @@ -221,16 +312,85 @@ def _trend_table_html(dataset: OWIDDataset, entity: str, ordered_rows: list[tupl value_series = [(dt, _parse_float(row.get(dataset.value_col))) for dt, row in series] d4 = _series_delta([(dt, v) for dt, v in value_series if v is not None], 4) d12 = _series_delta([(dt, v) for dt, v in value_series if v is not None], 12) + d7 = _series_delta([(dt, v) for dt, v in value_series if v is not None], 7) + d30 = _series_delta([(dt, v) for dt, v in value_series if v is not None], 30) lines = [f"

{html.escape(entity)} — recent trend

"] - if value_series and value_series[-1][1] is not None: - latest_dt, latest_val = value_series[-1] + clean_series = [(dt, v) for dt, v in value_series if v is not None] + if clean_series and clean_series[-1][1] is not None: + latest_dt, latest_val = clean_series[-1] + row_span_days = ( + (clean_series[-1][0] - clean_series[0][0]).days + if len(clean_series) > 1 + else 0 + ) lines.append( f"

Latest {html.escape(dataset.value_col)} " f"({latest_dt.date().isoformat()}): {latest_val:,.0f}; " f"delta_4_rows: {d4 if d4 is not None else 'n/a'}; " f"delta_12_rows: {d12 if d12 is not None else 'n/a'}

" ) + + cumulative_values = [v for _, v in clean_series] + cumulative_fit_window = cumulative_values[-30:] + cumulative_linear = _fit_linear(cumulative_fit_window) + increments = [ + cumulative_values[i] - cumulative_values[i - 1] + for i in range(1, len(cumulative_values)) + ] + + lines.append( + f"

Trend summary ({html.escape(dataset.value_col)}, {html.escape(entity)}): " + f"points={len(cumulative_values)}, span_days={row_span_days}, " + f"delta_7_rows={_fmt_num(d7)}, delta_30_rows={_fmt_num(d30)}, " + f"recent_increment_stats={_stats_summary(increments)}.

" + ) + + if cumulative_linear is None: + lines.append( + "

Linear fit on recent cumulative trend: unavailable " + "(insufficient points).

" + ) + else: + lines.append( + "

Linear fit on recent cumulative trend " + f"({html.escape(dataset.value_col)}, last {len(cumulative_fit_window)} rows): " + f"intercept={cumulative_linear['intercept']:.6f}, " + f"slope={cumulative_linear['slope']:.6f} per row, " + f"R^2={cumulative_linear['r2']:.6f}.

" + ) + + if "new_cases" in cols: + new_case_values = [ + _parse_float(row.get("new_cases")) + for _dt, row in ordered_rows + ] + new_case_values = [v for v in new_case_values if v is not None] + new_case_fit_window = new_case_values[-30:] + exp_fit = _fit_exponential(new_case_fit_window) + lines.append( + f"

Incident trend stats (new_cases, {html.escape(entity)}): " + f"{_stats_summary(new_case_fit_window)}.

" + ) + if exp_fit is None: + lines.append( + "

Exponential fit on recent new_cases: unavailable " + "(insufficient strictly-positive points).

" + ) + else: + lines.append( + "

Exponential fit on recent new_cases " + f"(last {len(new_case_fit_window)} rows): " + f"a={exp_fit['a']:.6f}, b={exp_fit['b']:.6f}, " + f"R^2={exp_fit['r2']:.6f}.

" + ) + + if is_target_entity: + lines.append( + f"

Region/question-target focus: {html.escape(entity)} trend " + "statistics and model-fit outputs are included in this section.

" + ) + header = "".join(f"{html.escape(c)}" for c in cols) lines.append(f"{header}") for _dt, row in ordered_rows[-dataset.trend_rows:]: @@ -348,7 +508,14 @@ def latest_value(loc: str) -> float: f"{_cumulative_line(dataset, entity, dt, row)}. " f"Source: {html.escape(dataset.csv_url)}.

" ) - summary_lines.extend(_trend_table_html(dataset, entity, rows_by_location[entity])) + summary_lines.extend( + _trend_table_html( + dataset, + entity, + rows_by_location[entity], + is_target_entity=entity in target_locations, + ) + ) if top_locations: summary_lines.append("

Top locations by latest cumulative value

") diff --git a/bioscancast/stages/extraction/custom_scrapers/paho_oropouche_portal.py b/bioscancast/stages/extraction/custom_scrapers/paho_oropouche_portal.py new file mode 100644 index 0000000..ae81f12 --- /dev/null +++ b/bioscancast/stages/extraction/custom_scrapers/paho_oropouche_portal.py @@ -0,0 +1,318 @@ +"""Custom scraper for PAHO ARBO Portal Oropouche weekly CSV. + +The PAHO Oropouche portal is dashboard-backed. This scraper pulls the downloadable +underlying CSV and renders computed weekly/country analytics as compact HTML so +standard extraction + insight stages can consume the information. +""" + +from __future__ import annotations + +import html +import io +import re +import unicodedata +from datetime import datetime, timezone +from typing import Callable, Optional + +import numpy as np +import pandas as pd +from curl_cffi import requests as curl_requests + +from bioscancast.stages.extraction.config import ExtractionConfig +from bioscancast.stages.extraction.fetcher import FetchResult + +CSV_URL = ( + "https://phip.paho.org/vizql/w/AME_OROV_Cases/v/Oropouche/vudcsv/" + "sessions/21F758F6EAB9431B932EB51F61EBDE01-1:0/views/" + "10956961424773455462_12644916002446576356" + "?underlying_table_id=FZ_AME_OROV_Cases_SE_12E30DDB8F874DC6AE5888461B08AB74" + "&underlying_table_caption=Full%20Data" +) + +CsvFetcher = Callable[[str, ExtractionConfig], Optional[str]] + + +def _fetch_csv_text(url: str, cfg: ExtractionConfig) -> Optional[str]: + try: + resp = curl_requests.get( + url, + timeout=max(cfg.fetch_timeout_seconds, 30.0), + impersonate=cfg.impersonate, + allow_redirects=True, + ) + except Exception: + return None + + if resp.status_code != 200: + return None + + text = (resp.text or "").strip() + return text or None + + +def _normalize_col(name: str) -> str: + folded = unicodedata.normalize("NFKD", name or "") + folded = "".join(ch for ch in folded if not unicodedata.combining(ch)) + folded = folded.lower().strip() + folded = re.sub(r"[^a-z0-9]+", "_", folded) + return folded.strip("_") + + +def _resolve_columns(df: pd.DataFrame) -> tuple[str, str, str, str] | None: + mapping = {_normalize_col(c): c for c in df.columns} + + year = mapping.get("ano") + week = mapping.get("semanas_epi") + confirmed = mapping.get("week_lab_confirmed") + country = mapping.get("pais") + + if not all((year, week, confirmed, country)): + return None + return year, week, confirmed, country + + +def _r2(y: np.ndarray, yhat: np.ndarray) -> float: + ss_res = float(np.sum((y - yhat) ** 2)) + ss_tot = float(np.sum((y - np.mean(y)) ** 2)) + if ss_tot <= 0.0: + return 1.0 if ss_res <= 1e-12 else 0.0 + return max(0.0, min(1.0, 1.0 - (ss_res / ss_tot))) + + +def _fit_linear(counts: pd.Series) -> dict[str, float] | None: + if counts.shape[0] < 2: + return None + y = counts.to_numpy(dtype=float) + x = np.arange(y.shape[0], dtype=float) + slope, intercept = np.polyfit(x, y, 1) + yhat = slope * x + intercept + return { + "intercept": float(intercept), + "slope": float(slope), + "r2": _r2(y, yhat), + } + + +def _fit_exponential(counts: pd.Series) -> dict[str, float] | None: + if counts.shape[0] < 2: + return None + y = counts.to_numpy(dtype=float) + x = np.arange(y.shape[0], dtype=float) + + mask = y > 0 + if int(np.sum(mask)) < 2: + return None + + x_pos = x[mask] + y_pos = y[mask] + b, ln_a = np.polyfit(x_pos, np.log(y_pos), 1) + a = float(np.exp(ln_a)) + yhat = a * np.exp(b * x_pos) + + return { + "a": a, + "b": float(b), + "r2": _r2(y_pos, yhat), + } + + +def _fmt_stats(series: pd.Series) -> str: + if series.empty: + return "n=0" + desc = series.describe() + std = desc["std"] if pd.notna(desc["std"]) else 0.0 + return ( + f"n={int(desc['count'])}, mean={desc['mean']:.2f}, std={std:.2f}, " + f"min={desc['min']:.0f}, median={series.median():.0f}, max={desc['max']:.0f}" + ) + + +def _render_counts_table(title: str, counts: pd.Series, key_header: str) -> str: + rows = [] + for idx, value in counts.items(): + rows.append(f"") + body = "".join(rows) if rows else "" + return ( + f"

{html.escape(title)}

" + "
{html.escape(str(idx))}{int(value)}
No data
" + f"" + f"{body}
{html.escape(key_header)}sum_week_lab_confirmed
" + ) + + +def _render_model_section( + title: str, + counts: pd.Series, + *, + linear: dict[str, float] | None, + exp: dict[str, float] | None, +) -> str: + lines = [f"

{html.escape(title)}

"] + lines.append(f"

Input points: {counts.shape[0]}.

") + if linear is None: + lines.append("

Linear model: unavailable (insufficient data).

") + else: + lines.append( + "

Linear model y = intercept + slope*x: " + f"intercept={linear['intercept']:.6f}, slope={linear['slope']:.6f}, R^2={linear['r2']:.6f}.

" + ) + + if exp is None: + lines.append( + "

Exponential model y = a*exp(b*x): unavailable " + "(insufficient strictly-positive points).

" + ) + else: + lines.append( + "

Exponential model y = a*exp(b*x): " + f"a={exp['a']:.6f}, b={exp['b']:.6f}, R^2={exp['r2']:.6f}.

" + ) + return "".join(lines) + + +def _render_country_summary(df: pd.DataFrame, country_col: str, value_col: str) -> str: + if df.empty: + return "

Per-country summary

No country data available.

" + + g = df.groupby(country_col)[value_col].sum().sort_values(ascending=False) + summary = g.describe() + std = summary["std"] if pd.notna(summary["std"]) else 0.0 + + rows = [] + for country, value in g.items(): + rows.append( + f"{html.escape(str(country))}{int(value)}" + ) + + return ( + "

Per-country summary

" + f"

Affected states/countries (Pais values): {int(g.shape[0])}. " + f"Per-country cumulative summary: n={int(summary['count'])}, mean={summary['mean']:.2f}, " + f"std={std:.2f}, min={summary['min']:.0f}, median={g.median():.0f}, max={summary['max']:.0f}. " + f"Cumulative confirmed count across all Pais: {int(g.sum())}.

" + "" + "" + f"{''.join(rows)}
Paiscumulative_week_lab_confirmed
" + ) + + +def fetch( + url: str, + *, + config: ExtractionConfig | None = None, + as_of_date: datetime | None = None, + region: str | None = None, + question_text: str | None = None, + csv_fetcher: CsvFetcher | None = None, +) -> FetchResult | None: + cfg = config or ExtractionConfig() + fetched_at = datetime.now(timezone.utc) + + text = (csv_fetcher or _fetch_csv_text)(CSV_URL, cfg) + if not text: + return None + + try: + df = pd.read_csv(io.StringIO(text)) + except Exception: + return None + + cols = _resolve_columns(df) + if cols is None: + return None + year_col, week_col, confirmed_col, country_col = cols + + df = df[[year_col, week_col, confirmed_col, country_col]].copy() + df[year_col] = pd.to_numeric(df[year_col], errors="coerce") + df[week_col] = pd.to_numeric(df[week_col], errors="coerce") + + value_text = ( + df[confirmed_col] + .astype(str) + .str.replace(",", "", regex=False) + .str.strip() + ) + df[confirmed_col] = pd.to_numeric(value_text, errors="coerce").fillna(0) + + df = df.dropna(subset=[year_col, week_col]).copy() + if df.empty: + return None + + df[year_col] = df[year_col].astype(int) + df[week_col] = df[week_col].astype(int) + df = df[(df[week_col] >= 1) & (df[week_col] <= 53)].copy() + if df.empty: + return None + + df["week_start"] = [ + datetime.fromisocalendar(int(y), int(w), 1).date() + for y, w in zip(df[year_col], df[week_col]) + ] + + if as_of_date is not None: + cutoff = as_of_date.astimezone(timezone.utc).date() + df = df[df["week_start"] <= cutoff] + if df.empty: + return None + + df["year_week"] = [f"{int(y)}-W{int(w):02d}" for y, w in zip(df[year_col], df[week_col])] + + weekly_counts = ( + df.groupby(["week_start", "year_week"], as_index=False)[confirmed_col] + .sum() + .sort_values("week_start") + ) + if weekly_counts.empty: + return None + + weekly_series = pd.Series( + weekly_counts[confirmed_col].to_numpy(), + index=weekly_counts["year_week"].tolist(), + ) + + recent_24 = weekly_counts.tail(24) + recent_24_series = pd.Series( + recent_24[confirmed_col].to_numpy(), + index=recent_24["year_week"].tolist(), + ) + + lin = _fit_linear(recent_24_series) + exp = _fit_exponential(recent_24_series) + + country_week = ( + df.groupby(["year_week", country_col], as_index=False)[confirmed_col] + .sum() + .sort_values(["year_week", country_col]) + ) + + cumulative_all = int(weekly_series.sum()) + latest_week = str(weekly_counts["year_week"].iloc[-1]) + + rendered = ( + "" + "PAHO Oropouche portal - weekly CSV analytics" + "" + "

PAHO Oropouche weekly analytics snapshot

" + f"

Source portal URL: {html.escape(url)}

" + f"

CSV source URL: {html.escape(CSV_URL)}

" + f"

Retrieved at: {fetched_at.isoformat()} | latest year_week: {html.escape(latest_week)}.

" + "

Weekly counts from Año + Semanas Epi

" + f"

Summary statistics (weekly summed Week Lab Confirmed): {_fmt_stats(weekly_series)}. " + f"Cumulative confirmed count across all weeks: {cumulative_all}.

" + f"{_render_counts_table('Counts by year_week', weekly_series, 'year_week')}" + f"{_render_model_section('Model fit on past 24 weeks (approx past 6 months)', recent_24_series, linear=lin, exp=exp)}" + "

Country/state grouping from year_week + Pais

" + f"

Grouped rows (year_week x Pais): {int(country_week.shape[0])}.

" + f"{_render_country_summary(df, country_col, confirmed_col)}" + "" + ).encode("utf-8") + + return FetchResult( + url=CSV_URL, + final_url=CSV_URL, + status_code=200, + content_type="text/html", + content_bytes=rendered, + fetched_at=fetched_at, + error=None, + ) diff --git a/bioscancast/stages/extraction/custom_scrapers/usda_aphis_livestock.py b/bioscancast/stages/extraction/custom_scrapers/usda_aphis_livestock.py new file mode 100644 index 0000000..23d9377 --- /dev/null +++ b/bioscancast/stages/extraction/custom_scrapers/usda_aphis_livestock.py @@ -0,0 +1,419 @@ +"""Custom scraper for USDA APHIS HPAI livestock detections. + +The public APHIS dashboard is a client-rendered Tableau page; this scraper uses +headless browser automation to export the Tableau crosstab CSV and renders +compact analytical prose/tables so the regular HTML parser + insight extraction +pipeline can operate without additional parser changes. +""" + +from __future__ import annotations + +import html +import logging +from datetime import datetime, timezone +from typing import Callable, Optional + +import numpy as np +import pandas as pd + +from bioscancast.stages.extraction.config import ExtractionConfig +from bioscancast.stages.extraction.fetcher import FetchResult + +logger = logging.getLogger(__name__) + +TABLEAU_VIEW_URL = ( + "https://publicdashboards.dl.usda.gov/t/MRP_PUB/views/" + "VS_Cattle_HPAIConfirmedDetections2024/HPAI2022ConfirmedDetections" +) + +TableauFetcher = Callable[[str, ExtractionConfig], Optional[pd.DataFrame]] + + +def _embed_url(url: str) -> str: + if ":embed=y" in url: + return url + sep = "&" if "?" in url else "?" + return f"{url}{sep}:showVizHome=no&:embed=y" + + +def _read_csv_with_fallback(path: str) -> Optional[pd.DataFrame]: + attempts = [ + {"encoding": "utf-16", "sep": "\t", "skiprows": 1}, + {"encoding": "utf-16-le", "sep": "\t", "skiprows": 1}, + {"encoding": "utf-8-sig", "sep": "\t", "skiprows": 1}, + {"encoding": "utf-8", "sep": "\t", "skiprows": 1}, + {"encoding": "utf-16"}, + {"encoding": "utf-16-le"}, + {"encoding": "utf-8-sig"}, + {"encoding": "utf-8"}, + {"encoding": "latin-1"}, + ] + for kwargs in attempts: + try: + df = pd.read_csv(path, **kwargs) + logger.info("USDA Tableau: parsed CSV with options=%s", kwargs) + return df + except UnicodeDecodeError: + logger.info("USDA Tableau: decode failed with options=%s", kwargs) + continue + except Exception as exc: + logger.info("USDA Tableau: csv parse error with options=%s: %s", kwargs, exc) + continue + return None + + +def _fetch_tableau_dataframe(url: str, cfg: ExtractionConfig) -> Optional[pd.DataFrame]: + try: + from playwright.sync_api import sync_playwright + except Exception as exc: + logger.info("USDA Tableau: Playwright unavailable: %s", exc) + return None + + timeout_ms = int(max(cfg.fetch_timeout_seconds, 45.0) * 1000) + + try: + with sync_playwright() as p: + logger.info("USDA Tableau: launching headless browser") + browser = p.chromium.launch(headless=True) + context = browser.new_context(accept_downloads=True) + page = context.new_page() + + target_url = _embed_url(url) + logger.info("USDA Tableau: navigating to %s", target_url) + page.goto(_embed_url(url), wait_until="domcontentloaded", timeout=timeout_ms) + + logger.info("USDA Tableau: waiting for download toolbar button") + for _ in range(200): + if page.locator("button[data-tb-test-id='viz-viewer-toolbar-button-download']").count() > 0: + break + page.wait_for_timeout(250) + download_btn_count = page.locator("button[data-tb-test-id='viz-viewer-toolbar-button-download']").count() + logger.info("USDA Tableau: download button count=%s", download_btn_count) + if download_btn_count == 0: + logger.info("USDA Tableau: download button not found before timeout") + context.close() + browser.close() + return None + + logger.info("USDA Tableau: opening download menu") + page.locator("button[data-tb-test-id='viz-viewer-toolbar-button-download']").first.click(timeout=20_000) + logger.info("USDA Tableau: selecting Crosstab") + page.locator("[data-tb-test-id='download-flyout-download-crosstab-MenuItem']").first.click(timeout=20_000) + page.wait_for_timeout(1500) + + logger.info("USDA Tableau: selecting worksheet 'Table Details by Date'") + page.locator("[data-tb-test-id^='sheet-thumbnail-']", has_text="Table Details by Date").first.click(timeout=20_000) + logger.info("USDA Tableau: selecting CSV export format") + page.locator("[data-tb-test-id='crosstab-options-dialog-radio-csv-Label']").first.click(timeout=20_000) + + downloads = [] + page.on("download", lambda d: downloads.append(d)) + logger.info("USDA Tableau: triggering export download") + page.locator("[data-tb-test-id='export-crosstab-export-Button']").first.click(timeout=20_000) + + waited = 0 + step = 250 + while waited <= timeout_ms and not downloads: + page.wait_for_timeout(step) + waited += step + logger.info("USDA Tableau: download events captured=%s after %sms", len(downloads), waited) + + if not downloads: + logger.info("USDA Tableau: no download event received") + context.close() + browser.close() + return None + download = downloads[0] + + path = download.path() + logger.info("USDA Tableau: download path resolved=%s", bool(path)) + if path is None: + logger.info("USDA Tableau: download path unavailable") + context.close() + browser.close() + return None + + logger.info("USDA Tableau: reading CSV from %s", path) + df = _read_csv_with_fallback(path) + context.close() + browser.close() + + if df is None: + logger.info("USDA Tableau: failed to parse CSV with fallback encodings") + return None + if df.empty: + logger.info("USDA Tableau: CSV parsed but DataFrame empty") + return None + logger.info("USDA Tableau: CSV parsed rows=%s cols=%s", df.shape[0], df.shape[1]) + return df + except Exception as exc: + logger.info("USDA Tableau: fetch failed with exception: %s", exc) + return None + + +def _resolve_column(df: pd.DataFrame, wanted: str) -> str | None: + by_lower = {str(c).strip().lower(): c for c in df.columns} + return by_lower.get(wanted.strip().lower()) + + +def _r2(y: np.ndarray, yhat: np.ndarray) -> float: + ss_res = float(np.sum((y - yhat) ** 2)) + ss_tot = float(np.sum((y - np.mean(y)) ** 2)) + if ss_tot <= 0.0: + return 1.0 if ss_res <= 1e-12 else 0.0 + return max(0.0, min(1.0, 1.0 - (ss_res / ss_tot))) + + +def _fit_linear(counts: pd.Series) -> dict[str, float] | None: + if counts.shape[0] < 2: + return None + y = counts.to_numpy(dtype=float) + x = np.arange(y.shape[0], dtype=float) + slope, intercept = np.polyfit(x, y, 1) + yhat = slope * x + intercept + return { + "intercept": float(intercept), + "slope": float(slope), + "r2": _r2(y, yhat), + } + + +def _fit_exponential(counts: pd.Series) -> dict[str, float] | None: + if counts.shape[0] < 2: + return None + y = counts.to_numpy(dtype=float) + x = np.arange(y.shape[0], dtype=float) + + # Log-linear fit requires strictly positive observations. + mask = y > 0 + if int(np.sum(mask)) < 2: + return None + + x_pos = x[mask] + y_pos = y[mask] + + b, ln_a = np.polyfit(x_pos, np.log(y_pos), 1) + a = float(np.exp(ln_a)) + yhat = a * np.exp(b * x_pos) + + return { + "a": a, + "b": float(b), + "r2": _r2(y_pos, yhat), + } + + +def _fmt_stats(series: pd.Series) -> str: + if series.empty: + return "n=0" + desc = series.describe() + return ( + f"n={int(desc['count'])}, mean={desc['mean']:.2f}, std={desc['std'] if pd.notna(desc['std']) else 0.0:.2f}, " + f"min={desc['min']:.0f}, median={series.median():.0f}, max={desc['max']:.0f}" + ) + + +def _render_counts_table(title: str, counts: pd.Series, key_header: str) -> str: + rows = [] + for idx, value in counts.items(): + rows.append( + f"{html.escape(str(idx))}{int(value)}" + ) + body = "".join(rows) if rows else "No data" + return ( + f"

{html.escape(title)}

" + "" + f"" + f"{body}
{html.escape(key_header)}count
" + ) + + +def _render_state_summary(df: pd.DataFrame) -> str: + if df.empty: + return "

Per-state summary

No state data available.

" + + g = df.groupby("State").size().sort_values(ascending=False) + summary = g.describe() + + rows = [] + for state, value in g.items(): + rows.append(f"{html.escape(str(state))}{int(value)}") + + return ( + "

Per-state summary

" + f"

State-case-count statistics: n={int(summary['count'])}, " + f"mean={summary['mean']:.2f}, std={summary['std'] if pd.notna(summary['std']) else 0.0:.2f}, " + f"min={summary['min']:.0f}, median={g.median():.0f}, max={summary['max']:.0f}.

" + "" + "" + f"{''.join(rows)}
Statecase_count
" + ) + + +def _render_first_case_by_state(df: pd.DataFrame) -> str: + if df.empty: + return "

Affected states and first detected dates

No state data available.

" + + first_by_state = ( + df.groupby("State")["Confirmed Diagnosis"] + .min() + .sort_values() + ) + + rows = [] + for state, dt in first_by_state.items(): + rows.append( + "" + f"{html.escape(str(state))}" + f"{html.escape(dt.date().isoformat())}" + "" + ) + + return ( + "

Affected states and first detected dates

" + f"

Total affected states: {int(first_by_state.shape[0])}.

" + "" + "" + f"{''.join(rows)}
Statefirst_confirmed_diagnosis_date
" + ) + + +def _render_model_section( + title: str, + counts: pd.Series, + *, + linear: dict[str, float] | None, + exp: dict[str, float] | None, +) -> str: + lines = [f"

{html.escape(title)}

"] + # Repeat the section title in prose so it survives heading-only drops in + # some HTML extraction paths and remains quotable for insight extraction. + lines.append( + f"

Section title: {html.escape(title)}. " + f"Input points: {counts.shape[0]}.

" + ) + + if linear is None: + lines.append("

Linear model: unavailable (insufficient data).

") + else: + lines.append( + "

Linear model y = intercept + slope*x: " + f"intercept={linear['intercept']:.6f}, slope={linear['slope']:.6f}, " + f"R^2={linear['r2']:.6f}.

" + ) + + if exp is None: + lines.append( + "

Exponential model y = a*exp(b*x): unavailable " + "(insufficient strictly-positive points).

" + ) + else: + lines.append( + "

Exponential model y = a*exp(b*x): " + f"a={exp['a']:.6f}, b={exp['b']:.6f}, R^2={exp['r2']:.6f}.

" + ) + + return "".join(lines) + + +def fetch( + url: str, + *, + config: ExtractionConfig | None = None, + as_of_date: datetime | None = None, + region: str | None = None, + question_text: str | None = None, + tableau_fetcher: TableauFetcher | None = None, +) -> FetchResult | None: + cfg = config or ExtractionConfig() + fetched_at = datetime.now(timezone.utc) + + df = (tableau_fetcher or _fetch_tableau_dataframe)(TABLEAU_VIEW_URL, cfg) + if df is None or df.empty: + return None + + df = df.copy() + + # Requested behavior: ignore first row. + if df.shape[0] < 2: + return None + df = df.iloc[1:].copy() + + confirmed_col = _resolve_column(df, "Confirmed Diagnosis") + state_col = _resolve_column(df, "State") + if confirmed_col is None or state_col is None: + return None + + if confirmed_col != "Confirmed Diagnosis": + df = df.rename(columns={confirmed_col: "Confirmed Diagnosis"}) + if state_col != "State": + df = df.rename(columns={state_col: "State"}) + + df["Confirmed Diagnosis"] = pd.to_datetime( + df["Confirmed Diagnosis"], errors="coerce" + ) + df = df.dropna(subset=["Confirmed Diagnosis"]).copy() + if df.empty: + return None + + if as_of_date is not None: + cutoff = as_of_date.astimezone(timezone.utc).replace(tzinfo=None) + df = df[df["Confirmed Diagnosis"] <= cutoff] + if df.empty: + return None + + # Normalize to date only for groupings. + df["diagnosis_date"] = df["Confirmed Diagnosis"].dt.date + df["month"] = df["Confirmed Diagnosis"].dt.to_period("M").astype(str) + + monthly_counts = df.groupby("month").size().sort_index() + daily_counts = df.groupby("diagnosis_date").size().sort_index() + cumulative_case_count = int(df.shape[0]) + + if monthly_counts.empty or daily_counts.empty: + return None + + month_window = monthly_counts.iloc[-6:] + day_window = daily_counts.iloc[-30:] + + lin_month = _fit_linear(month_window) + exp_month = _fit_exponential(month_window) + lin_day = _fit_linear(day_window) + exp_day = _fit_exponential(day_window) + + latest = str(daily_counts.index.max()) + + rendered = ( + "" + "USDA APHIS HPAI Confirmed Cases in Livestock - CSV analytics" + "" + "

USDA APHIS HPAI Confirmed Cases in Livestock - analytics snapshot

" + f"

Source dashboard URL: {html.escape(url)}

" + f"

Tableau source URL: {html.escape(TABLEAU_VIEW_URL)}

" + f"

Retrieved at: {fetched_at.isoformat()} | latest confirmed diagnosis date: {html.escape(latest)}.

" + "

This summary is computed from Tableau workbook data. The first data row was ignored by design.

" + "

Cumulative and state coverage summary

" + f"

Cumulative confirmed cases in livestock (from CSV rows): {cumulative_case_count}.

" + f"{_render_first_case_by_state(df)}" + "

Monthly counts from Confirmed Diagnosis

" + f"

Summary statistics (monthly case counts): {_fmt_stats(monthly_counts)}.

" + f"{_render_counts_table('Counts by month', monthly_counts, 'month')}" + f"{_render_model_section('Model fit on past 6 months (monthly counts)', month_window, linear=lin_month, exp=exp_month)}" + "

Daily counts from Confirmed Diagnosis

" + f"

Summary statistics (daily case counts): {_fmt_stats(daily_counts)}.

" + f"{_render_counts_table('Counts by day', daily_counts, 'date')}" + f"{_render_model_section('Model fit on past 30 days (daily counts)', day_window, linear=lin_day, exp=exp_day)}" + "

State-level counts from Confirmed Diagnosis + State

" + f"{_render_state_summary(df)}" + "" + ).encode("utf-8") + + return FetchResult( + url=TABLEAU_VIEW_URL, + final_url=TABLEAU_VIEW_URL, + status_code=200, + content_type="text/html", + content_bytes=rendered, + fetched_at=fetched_at, + error=None, + ) diff --git a/bioscancast/stages/forecasting/pipeline.py b/bioscancast/stages/forecasting/pipeline.py index 309b4b2..68c2fc3 100644 --- a/bioscancast/stages/forecasting/pipeline.py +++ b/bioscancast/stages/forecasting/pipeline.py @@ -138,6 +138,8 @@ def run( question: ForecastQuestion, records: List[InsightRecord], options: List[str], + historical_context: str | None = None, + historical_insight_context: str | None = None, ) -> ForecastResult: """Produce a forecast distribution over ``options`` for ``question``. @@ -168,7 +170,11 @@ def run( # --- Ensemble of superforecaster reasoning samples --- system, user, schema = build_forecast_prompt( - question, options, evidence_digest + question, + options, + evidence_digest, + historical_context, + historical_insight_context, ) usable_vectors: List[List[float]] = [] for i in range(config.ensemble_samples): diff --git a/bioscancast/stages/forecasting/prompts.py b/bioscancast/stages/forecasting/prompts.py index 6ae466a..1edb4f0 100644 --- a/bioscancast/stages/forecasting/prompts.py +++ b/bioscancast/stages/forecasting/prompts.py @@ -121,6 +121,8 @@ def build_forecast_prompt( question: ForecastQuestion, options: List[str], evidence_digest: str, + historical_context: str | None = None, + historical_insight_context: str | None = None, ) -> Tuple[str, str, dict]: """Build the (system, user, json_schema) tuple for one reasoning sample. @@ -154,6 +156,22 @@ def build_forecast_prompt( ) parts.append(f"OPTIONS (assign a probability to each, in this order):\n{numbered_options}") + if historical_context: + parts.append("") + parts.append( + "FORECAST HISTORY (prior runs for this question; use as context, " + "not as a substitute for current evidence):" + ) + parts.append(historical_context) + + if historical_insight_context: + parts.append("") + parts.append( + "PAST INSIGHT SCRAPES (from prior runs; each line includes the " + "scrape as-of date):" + ) + parts.append(historical_insight_context) + parts.append("") if evidence_digest: parts.append("EVIDENCE (most recent first):") diff --git a/bioscancast/stages/insight/text_extraction/chunk_extractor.py b/bioscancast/stages/insight/text_extraction/chunk_extractor.py index 4fa8d67..5434374 100644 --- a/bioscancast/stages/insight/text_extraction/chunk_extractor.py +++ b/bioscancast/stages/insight/text_extraction/chunk_extractor.py @@ -414,6 +414,20 @@ def extract_facts_from_chunk( # and content-insertion hallucinations. See ``_quote_matches`` for # the rationale and the layers. canonical_quote = _quote_matches(raw_quote, chunk.text) + source_chunk_id = chunk.chunk_id + if canonical_quote is None: + # Minimal fallback for chunk-routing misses: if retrieval sends a + # chunk adjacent to the one the model quoted, accept only when the + # quote appears verbatim in some other chunk of the same document. + for alt_chunk in document.chunks: + if alt_chunk.chunk_id == chunk.chunk_id: + continue + alt_quote = _quote_matches(raw_quote, alt_chunk.text) + if alt_quote is not None: + canonical_quote = alt_quote + source_chunk_id = alt_chunk.chunk_id + break + if canonical_quote is None: logger.warning( "Hallucination guard: dropping fact with non-matching quote. " @@ -456,7 +470,7 @@ def extract_facts_from_chunk( sources=[ ChunkReference( document_id=document.id, - chunk_id=chunk.chunk_id, + chunk_id=source_chunk_id, source_url=document.source_url, quote=canonical_quote[:200], ), diff --git a/bioscancast/tests/test_forecast_history_context.py b/bioscancast/tests/test_forecast_history_context.py new file mode 100644 index 0000000..97e1307 --- /dev/null +++ b/bioscancast/tests/test_forecast_history_context.py @@ -0,0 +1,483 @@ +from __future__ import annotations + +import json + +import bioscancast.main as orchestrator +from bioscancast.main import ( + _build_forecast_history_context, + _build_insight_history_context, +) +from bioscancast.stages.forecasting.schemas import ( + ForecastDistribution, + ForecastRecord, + ForecastResult, +) +from bioscancast.stages.insight.pipeline import InsightRunResult + + +def _write_json(path, payload): + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(payload), encoding="utf-8") + + +def test_build_forecast_history_context_reads_prior_runs(tmp_path): + qid = "q-hist" + current = "20260714_120000" + + old_run = tmp_path / qid / "20260701_000000" + _write_json( + old_run / "question.json", + {"id": qid, "as_of_date": "2026-07-01T00:00:00+00:00"}, + ) + _write_json( + old_run / "forecast.json", + { + "distributions": [ + { + "forecast_source": "bioscancast", + "probabilities": {"YES": 0.72, "NO": 0.28}, + } + ], + "samples": [ + {"ok": True, "rationale": "cases rose over prior two weeks"} + ], + "baseline_rationale": "prior-only baseline", + }, + ) + + context = _build_forecast_history_context(tmp_path, qid, current) + + assert "as_of=2026-07-01T00:00:00+00:00" in context + assert "top=YES (0.720)" in context + assert "rationale: cases rose over prior two weeks" in context + + +def test_build_forecast_history_context_skips_current_run(tmp_path): + qid = "q-hist" + current = "20260714_120000" + + cur_run = tmp_path / qid / current + _write_json(cur_run / "question.json", {"id": qid, "as_of_date": "2026-07-14"}) + _write_json( + cur_run / "forecast.json", + { + "distributions": [ + { + "forecast_source": "bioscancast", + "probabilities": {"YES": 0.99, "NO": 0.01}, + } + ], + "samples": [{"ok": True, "rationale": "current run"}], + }, + ) + + context = _build_forecast_history_context(tmp_path, qid, current) + assert context == "" + + +def test_build_insight_history_context_reads_prior_scrape_dates(tmp_path): + qid = "q-hist" + current = "20260714_120000" + + old_run = tmp_path / qid / "20260701_000000" + _write_json( + old_run / "question.json", + {"id": qid, "as_of_date": "2026-07-01T00:00:00+00:00"}, + ) + _write_json( + old_run / "insight.json", + { + "records": [ + { + "event_type": "case_count", + "location": "Uganda", + "metric_name": "confirmed_cases", + "metric_value": 42, + "summary": "Weekly increase in confirmed cases", + "sources": [{"quote": "42 confirmed cases"}], + } + ] + }, + ) + + context = _build_insight_history_context(tmp_path, qid, current) + assert "past_scrape_as_of=2026-07-01T00:00:00+00:00" in context + assert "metric=confirmed_cases, value=42" in context + assert "summary: Weekly increase in confirmed cases" in context + + +def test_orchestrator_passes_history_block_from_prior_runs(tmp_path, monkeypatch): + qid = "q-int" + current = "20260714_120000" + + # Two prior runs for the same question. + for run_id, as_of, probs, rationale in ( + ("20260712_000000", "2026-07-12T00:00:00+00:00", {"YES": 0.7, "NO": 0.3}, "uptick continued"), + ("20260710_000000", "2026-07-10T00:00:00+00:00", {"YES": 0.6, "NO": 0.4}, "signals mixed"), + ): + rdir = tmp_path / qid / run_id + _write_json(rdir / "question.json", {"id": qid, "as_of_date": as_of}) + _write_json( + rdir / "forecast.json", + { + "distributions": [ + { + "forecast_source": "bioscancast", + "probabilities": probs, + } + ], + "samples": [{"ok": True, "rationale": rationale}], + }, + ) + _write_json( + rdir / "insight.json", + { + "records": [ + { + "event_type": "case_count", + "location": "Uganda", + "metric_name": "confirmed_cases", + "metric_value": 10 if "0712" in run_id else 8, + "summary": "Prior scrape saw growth", + "sources": [{"quote": "confirmed cases reported"}], + } + ] + }, + ) + + # Unrelated question history must not be included. + other = tmp_path / "q-other" / "20260711_000000" + _write_json(other / "question.json", {"id": "q-other", "as_of_date": "2026-07-11"}) + _write_json( + other / "forecast.json", + { + "distributions": [ + { + "forecast_source": "bioscancast", + "probabilities": {"YES": 0.99, "NO": 0.01}, + } + ], + "samples": [{"ok": True, "rationale": "other question"}], + }, + ) + _write_json( + other / "insight.json", + { + "records": [ + { + "event_type": "case_count", + "location": "Other", + "metric_name": "confirmed_cases", + "metric_value": 999, + "summary": "other question", + "sources": [{"quote": "other question"}], + } + ] + }, + ) + + captured: dict[str, str | None] = { + "history": None, + "insight_history": None, + } + + class _DummyLLM: + def generate_json(self, **kwargs): # pragma: no cover + raise AssertionError("LLM should not be called in this stubbed test") + + def embed(self, texts, *, model): + return [[0.0] * 4 for _ in texts] + + class _DummyBackend: + pass + + class _SearchStagePipeline: + def __init__(self, **kwargs): + pass + + def run(self, question): + return [] + + class _FilteringPipeline: + def __init__(self, **kwargs): + pass + + def run(self, question, search_results): + return [] + + class _ExtractionPipeline: + def __init__(self, **kwargs): + self.docling_telemetry = [] + + def run(self, filtered_docs): + return [] + + class _InsightPipeline: + def __init__(self, **kwargs): + pass + + def run(self, question, documents): + return InsightRunResult( + records=[], + budget_summary={ + "total_input_tokens": 0, + "total_output_tokens": 0, + "per_model": {}, + }, + documents_processed=0, + documents_skipped=0, + notes=[], + ) + + class _ForecastingPipeline: + def __init__(self, **kwargs): + pass + + def run( + self, + question, + records, + options, + historical_context=None, + historical_insight_context=None, + ): + captured["history"] = historical_context + captured["insight_history"] = historical_insight_context + return ForecastResult( + question_id=question.id, + options=list(options), + distributions=[ + ForecastDistribution( + question_id=question.id, + forecast_source="bioscancast", + probabilities={"YES": 0.5, "NO": 0.5}, + ) + ], + records=[ + ForecastRecord( + question_id=question.id, + forecast_source="bioscancast", + option="YES", + probability=0.5, + ), + ForecastRecord( + question_id=question.id, + forecast_source="bioscancast", + option="NO", + probability=0.5, + ), + ], + budget_summary={ + "total_input_tokens": 0, + "total_output_tokens": 0, + "per_model": {}, + }, + ) + + monkeypatch.setenv("OPENAI_API_KEY", "test-key") + monkeypatch.setenv("TAVILY_API_KEY", "test-key") + monkeypatch.setattr(orchestrator, "OpenAILLMClient", _DummyLLM) + monkeypatch.setattr(orchestrator, "TavilyBackend", _DummyBackend) + monkeypatch.setattr(orchestrator, "SearchStagePipeline", _SearchStagePipeline) + monkeypatch.setattr(orchestrator, "FilteringPipeline", _FilteringPipeline) + monkeypatch.setattr(orchestrator, "ExtractionPipeline", _ExtractionPipeline) + monkeypatch.setattr(orchestrator, "InsightPipeline", _InsightPipeline) + monkeypatch.setattr(orchestrator, "ForecastingPipeline", _ForecastingPipeline) + + args = orchestrator._parse_args( + [ + qid, + "--question", + "Will cases exceed threshold?", + "--out-root", + str(tmp_path), + "--run-id", + current, + "--options", + "YES,NO", + "--no-baseline", + "--no-cache", + ] + ) + + orchestrator.run_pipeline(args) + + history = captured["history"] or "" + insight_history = captured["insight_history"] or "" + assert "as_of=2026-07-12T00:00:00+00:00" in history + assert "as_of=2026-07-10T00:00:00+00:00" in history + assert "rationale: uptick continued" in history + assert "rationale: signals mixed" in history + assert "other question" not in history + assert "past_scrape_as_of=2026-07-12T00:00:00+00:00" in insight_history + assert "past_scrape_as_of=2026-07-10T00:00:00+00:00" in insight_history + assert "metric=confirmed_cases" in insight_history + assert "other question" not in insight_history + + +def test_orchestrator_no_history_context_flag_disables_prior_context(tmp_path, monkeypatch): + qid = "q-int" + current = "20260714_130000" + + prior = tmp_path / qid / "20260712_000000" + _write_json( + prior / "question.json", + {"id": qid, "as_of_date": "2026-07-12T00:00:00+00:00"}, + ) + _write_json( + prior / "forecast.json", + { + "distributions": [ + { + "forecast_source": "bioscancast", + "probabilities": {"YES": 0.7, "NO": 0.3}, + } + ], + "samples": [{"ok": True, "rationale": "uptick continued"}], + }, + ) + _write_json( + prior / "insight.json", + { + "records": [ + { + "event_type": "case_count", + "location": "Uganda", + "metric_name": "confirmed_cases", + "metric_value": 10, + "summary": "Prior scrape saw growth", + "sources": [{"quote": "confirmed cases reported"}], + } + ] + }, + ) + + captured: dict[str, str | None] = { + "history": None, + "insight_history": None, + } + + class _DummyLLM: + def generate_json(self, **kwargs): # pragma: no cover + raise AssertionError("LLM should not be called in this stubbed test") + + def embed(self, texts, *, model): + return [[0.0] * 4 for _ in texts] + + class _DummyBackend: + pass + + class _SearchStagePipeline: + def __init__(self, **kwargs): + pass + + def run(self, question): + return [] + + class _FilteringPipeline: + def __init__(self, **kwargs): + pass + + def run(self, question, search_results): + return [] + + class _ExtractionPipeline: + def __init__(self, **kwargs): + self.docling_telemetry = [] + + def run(self, filtered_docs): + return [] + + class _InsightPipeline: + def __init__(self, **kwargs): + pass + + def run(self, question, documents): + return InsightRunResult( + records=[], + budget_summary={ + "total_input_tokens": 0, + "total_output_tokens": 0, + "per_model": {}, + }, + documents_processed=0, + documents_skipped=0, + notes=[], + ) + + class _ForecastingPipeline: + def __init__(self, **kwargs): + pass + + def run( + self, + question, + records, + options, + historical_context=None, + historical_insight_context=None, + ): + captured["history"] = historical_context + captured["insight_history"] = historical_insight_context + return ForecastResult( + question_id=question.id, + options=list(options), + distributions=[ + ForecastDistribution( + question_id=question.id, + forecast_source="bioscancast", + probabilities={"YES": 0.5, "NO": 0.5}, + ) + ], + records=[ + ForecastRecord( + question_id=question.id, + forecast_source="bioscancast", + option="YES", + probability=0.5, + ), + ForecastRecord( + question_id=question.id, + forecast_source="bioscancast", + option="NO", + probability=0.5, + ), + ], + budget_summary={ + "total_input_tokens": 0, + "total_output_tokens": 0, + "per_model": {}, + }, + ) + + monkeypatch.setenv("OPENAI_API_KEY", "test-key") + monkeypatch.setenv("TAVILY_API_KEY", "test-key") + monkeypatch.setattr(orchestrator, "OpenAILLMClient", _DummyLLM) + monkeypatch.setattr(orchestrator, "TavilyBackend", _DummyBackend) + monkeypatch.setattr(orchestrator, "SearchStagePipeline", _SearchStagePipeline) + monkeypatch.setattr(orchestrator, "FilteringPipeline", _FilteringPipeline) + monkeypatch.setattr(orchestrator, "ExtractionPipeline", _ExtractionPipeline) + monkeypatch.setattr(orchestrator, "InsightPipeline", _InsightPipeline) + monkeypatch.setattr(orchestrator, "ForecastingPipeline", _ForecastingPipeline) + + args = orchestrator._parse_args( + [ + qid, + "--question", + "Will cases exceed threshold?", + "--out-root", + str(tmp_path), + "--run-id", + current, + "--options", + "YES,NO", + "--no-baseline", + "--no-cache", + "--no-history-context", + ] + ) + + orchestrator.run_pipeline(args) + + assert (captured["history"] or "") == "" + assert (captured["insight_history"] or "") == "" diff --git a/bioscancast/tests/test_forecasting_pipeline.py b/bioscancast/tests/test_forecasting_pipeline.py index b246ebf..90415c9 100644 --- a/bioscancast/tests/test_forecasting_pipeline.py +++ b/bioscancast/tests/test_forecasting_pipeline.py @@ -15,7 +15,9 @@ from bioscancast.stages.forecasting import aggregation from bioscancast.stages.forecasting.config import ForecastingConfig from bioscancast.stages.forecasting.evidence import build_evidence_digest, _format_record +from bioscancast.stages.forecasting.prompts import build_forecast_prompt from bioscancast.stages.forecasting.pipeline import ForecastingPipeline +import bioscancast.stages.forecasting.pipeline as forecasting_pipeline_mod from bioscancast.stages.forecasting.schemas import ForecastResult from bioscancast.llm.base import LLMResponse from bioscancast.llm.fake_client import FakeLLMClient @@ -461,6 +463,90 @@ def test_pipeline_rejects_empty_options(): pipeline.run(QUESTION, [_record()], []) +def test_prompt_includes_forecast_history_block_when_provided(): + system, user, schema = build_forecast_prompt( + QUESTION, + ["YES", "NO"], + evidence_digest="[2026-01-15] sample evidence", + historical_context=( + "- as_of=2026-01-01 run=20260101_000000: top=NO (0.620); " + "probs: YES=0.380, NO=0.620; rationale: outbreak appears contained" + ), + ) + assert "FORECAST HISTORY (prior runs for this question" in user + assert "as_of=2026-01-01" in user + assert "rationale: outbreak appears contained" in user + + +def test_prompt_includes_past_insight_scrape_block_when_provided(): + system, user, schema = build_forecast_prompt( + QUESTION, + ["YES", "NO"], + evidence_digest="[2026-01-15] sample evidence", + historical_insight_context=( + "- past_scrape_as_of=2026-01-03 run=20260103_000000: " + "event_type=case_count, location=Uganda, metric=confirmed_cases, " + "value=12; summary: Weekly increase observed" + ), + ) + assert "PAST INSIGHT SCRAPES (from prior runs" in user + assert "past_scrape_as_of=2026-01-03" in user + assert "Weekly increase observed" in user + + +def test_pipeline_threads_historical_context_into_prompt(monkeypatch): + captured: dict[str, str | None] = { + "historical_context": None, + "historical_insight_context": None, + } + original = forecasting_pipeline_mod.build_forecast_prompt + + def _recording_build_prompt( + question, + options, + evidence_digest, + historical_context=None, + historical_insight_context=None, + ): + captured["historical_context"] = historical_context + captured["historical_insight_context"] = historical_insight_context + return original( + question, + options, + evidence_digest, + historical_context, + historical_insight_context, + ) + + monkeypatch.setattr( + forecasting_pipeline_mod, + "build_forecast_prompt", + _recording_build_prompt, + ) + + client = FakeLLMClient([_forecast_resp([0.6, 0.4])]) + pipeline = ForecastingPipeline( + llm_client=client, + config=_config(ensemble_samples=1, emit_baseline=False), + ) + pipeline.run( + QUESTION, + [_record()], + ["YES", "NO"], + historical_context="- as_of=2026-01-01 run=old: top=NO (0.620)", + historical_insight_context=( + "- past_scrape_as_of=2026-01-02 run=older: metric=confirmed_cases, value=7" + ), + ) + + assert captured["historical_context"] is not None + assert "as_of=2026-01-01" in (captured["historical_context"] or "") + assert captured["historical_insight_context"] is not None + assert "past_scrape_as_of=2026-01-02" in ( + captured["historical_insight_context"] or "" + ) + + # --------------------------------------------------------------------------- # Integration with the eval stage scorer # --------------------------------------------------------------------------- diff --git a/bioscancast/tests/test_owid_custom_scrapers.py b/bioscancast/tests/test_owid_custom_scrapers.py index 6ddf1c9..1e72d48 100644 --- a/bioscancast/tests/test_owid_custom_scrapers.py +++ b/bioscancast/tests/test_owid_custom_scrapers.py @@ -112,6 +112,9 @@ def test_emits_prose_and_trend_table(self): # Trend columns present, and the last World trend row is the cutoff date. assert "total_cases" in body assert "2025-03-05" in body + assert "Trend summary (total_cases, World):" in body + assert "Linear fit on recent cumulative trend (total_cases" in body + assert "Incident trend stats (new_cases, World):" in body def test_returns_none_when_no_rows_before_cutoff(self): assert ( @@ -146,6 +149,8 @@ def test_region_surfaces_target_entity(self): ) assert "

Africa

" in body assert "cumulative confirmed cases (Africa): 41,000" in body + assert "Region/question-target focus: Africa trend statistics" in body + assert "Trend summary (total_cases, Africa):" in body def test_question_text_infers_target_entity(self): body = _html( diff --git a/bioscancast/tests/test_paho_oropouche_portal_scraper.py b/bioscancast/tests/test_paho_oropouche_portal_scraper.py new file mode 100644 index 0000000..62e3900 --- /dev/null +++ b/bioscancast/tests/test_paho_oropouche_portal_scraper.py @@ -0,0 +1,156 @@ +from __future__ import annotations + +from datetime import datetime, timezone + +from bioscancast.llm.base import LLMResponse +from bioscancast.llm.fake_client import FakeLLMClient +from bioscancast.stages.extraction.config import ExtractionConfig +from bioscancast.stages.extraction.custom_scrapers import paho_oropouche_portal +from bioscancast.stages.extraction.pipeline import ExtractionPipeline +from bioscancast.stages.filtering.models import FilteredDocument, ForecastQuestion +from bioscancast.stages.insight.config import InsightConfig +from bioscancast.stages.insight.pipeline import InsightPipeline + + +_CSV = """Año,Semanas Epi,Week Lab Confirmed,Pais +2026,1,10,Brazil +2026,1,5,Peru +2026,2,7,Brazil +2026,3,0,Bolivia +2026,20,9,Brazil +2026,21,4,Peru +2026,22,3,Colombia +2026,23,8,Brazil +2026,24,2,Peru +""" + + +def _fetcher(text: str = _CSV): + return lambda url, config: text + + +def _html(result) -> str: + assert result is not None + assert result.content_type == "text/html" + return result.content_bytes.decode("utf-8") + + +def _asof(s: str) -> datetime: + return datetime.strptime(s, "%Y-%m-%d").replace(tzinfo=timezone.utc) + + +def test_renders_weekly_and_country_analytics(): + result = paho_oropouche_portal.fetch( + "https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + csv_fetcher=_fetcher(), + ) + body = _html(result) + + assert "Weekly counts from Año + Semanas Epi" in body + assert "Counts by year_week" in body + assert "2026-W01" in body + assert "Cumulative confirmed count across all weeks" in body + assert "Model fit on past 24 weeks" in body + assert "Country/state grouping from year_week + Pais" in body + assert "Per-country summary" in body + assert "Affected states/countries (Pais values):" in body + + +def test_as_of_date_filters_future_weeks(): + result = paho_oropouche_portal.fetch( + "https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + as_of_date=_asof("2026-05-25"), + csv_fetcher=_fetcher(), + ) + body = _html(result) + + assert "2026-W23" not in body + assert "2026-W24" not in body + + +def test_dispatcher_uses_source_id_custom_scraper(monkeypatch): + from bioscancast.stages.extraction import fetcher as fetcher_mod + + monkeypatch.setattr(paho_oropouche_portal, "_fetch_csv_text", lambda _url, _cfg: _CSV) + + result = fetcher_mod.fetch( + "https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + config=ExtractionConfig(), + source_id="paho_oropouche_portal", + ) + assert result is not None + assert result.fetch_strategy == "custom:paho_oropouche_portal" + assert "PAHO Oropouche weekly analytics snapshot" in _html(result) + + +def test_returns_none_on_missing_required_columns(): + bad = "year,week,cases,country\n2026,1,10,Brazil\n" + result = paho_oropouche_portal.fetch( + "https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + csv_fetcher=_fetcher(bad), + ) + assert result is None + + +def test_oropouche_scraper_output_reaches_insight_llm(monkeypatch): + monkeypatch.setattr(paho_oropouche_portal, "_fetch_csv_text", lambda _url, _cfg: _CSV) + + fdoc = FilteredDocument( + result_id="r-orov-1", + question_id="q-orov-1", + url="https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + canonical_url="https://www.paho.org/en/arbo-portal/arbo-portal-oropouche", + domain="www.paho.org", + title="PAHO Oropouche portal", + snippet="Dashboard", + published_date=None, + file_type="html", + relevance_score=1.0, + credibility_score=1.0, + final_score=1.0, + source_tier="official", + is_official_domain=True, + selection_reasons=["test"], + extraction_priority=1, + extraction_mode="full", + expected_value="high", + source_id="paho_oropouche_portal", + region="Americas", + question_text="How many countries/territories report Oropouche?", + ) + + question = ForecastQuestion( + id="q-orov-1", + text="How many Americas countries or territories report confirmed Oropouche?", + created_at=datetime(2026, 1, 1, tzinfo=timezone.utc), + region="Americas", + pathogen="Oropouche", + event_type="case_count", + ) + + docs = ExtractionPipeline(config=ExtractionConfig()).run([fdoc]) + assert len(docs) == 1 + assert docs[0].status == "success" + assert docs[0].chunks + + llm = FakeLLMClient([ + LLMResponse( + content={"facts": []}, + input_tokens=100, + output_tokens=10, + model="gpt-4o-mini", + raw_text='{"facts": []}', + ) + ]) + + insight = InsightPipeline( + llm_client=llm, + config=InsightConfig( + retrieval_top_k=1, + max_chunks_per_document=1, + low_survival_top_k=1, + ), + ).run(question, docs) + + assert insight.documents_processed == 1 + assert llm.call_count == 1 diff --git a/bioscancast/tests/test_usda_aphis_livestock_scraper.py b/bioscancast/tests/test_usda_aphis_livestock_scraper.py new file mode 100644 index 0000000..7891033 --- /dev/null +++ b/bioscancast/tests/test_usda_aphis_livestock_scraper.py @@ -0,0 +1,208 @@ +from __future__ import annotations + +import io +from datetime import datetime, timezone + +import pandas as pd + +from bioscancast.llm.fake_client import FakeLLMClient +from bioscancast.llm.base import LLMResponse +from bioscancast.stages.extraction.config import ExtractionConfig +from bioscancast.stages.extraction.pipeline import ExtractionPipeline +from bioscancast.stages.extraction.custom_scrapers import usda_aphis_livestock +from bioscancast.stages.filtering.models import FilteredDocument, ForecastQuestion +from bioscancast.stages.insight.config import InsightConfig +from bioscancast.stages.insight.pipeline import InsightPipeline + + +_CSV = """Confirmed Diagnosis,State,County +2024-01-01,IGNORE,NA +2026-01-05,CA,A +2026-01-15,CA,B +2026-02-10,TX,C +2026-03-12,TX,D +2026-03-20,TX,E +2026-04-02,NY,F +2026-04-02,CA,G +2026-04-03,CA,H +""" + + +def _df_fetcher(text: str = _CSV): + def _fetch(_url, _config): + return pd.read_csv(io.StringIO(text)) + + return _fetch + + +def _html(result) -> str: + assert result is not None + assert result.content_type == "text/html" + return result.content_bytes.decode("utf-8") + + +def _asof(s: str) -> datetime: + return datetime.strptime(s, "%Y-%m-%d").replace(tzinfo=timezone.utc) + + +def test_renders_requested_analytics_sections(): + result = usda_aphis_livestock.fetch( + "https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + tableau_fetcher=_df_fetcher(), + ) + body = _html(result) + + assert "Monthly counts from Confirmed Diagnosis" in body + assert "Model fit on past 6 months (monthly counts)" in body + assert "Daily counts from Confirmed Diagnosis" in body + assert "Model fit on past 30 days (daily counts)" in body + assert "Per-state summary" in body + assert "Linear model y = intercept + slope*x" in body + assert "Exponential model y = a*exp(b*x)" in body + assert "Cumulative confirmed cases in livestock (from CSV rows): 8" in body + assert "Affected states and first detected dates" in body + assert "CA2026-01-05" in body + assert "TX2026-02-10" in body + assert "NY2026-04-02" in body + + +def test_ignores_first_row_before_aggregation(): + result = usda_aphis_livestock.fetch( + "https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + tableau_fetcher=_df_fetcher(), + ) + body = _html(result) + + # The first row (2024-01-01, IGNORE) should not appear in output. + assert "2024-01" not in body + assert "IGNORE" not in body + # Remaining months do appear. + assert "2026-01" in body + assert "2026-04" in body + + +def test_as_of_date_applies_cutoff(): + result = usda_aphis_livestock.fetch( + "https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + as_of_date=_asof("2026-03-31"), + tableau_fetcher=_df_fetcher(), + ) + body = _html(result) + + assert "2026-04" not in body + assert "2026-03" in body + + +def test_dispatcher_uses_source_id_custom_scraper(monkeypatch): + from bioscancast.stages.extraction import fetcher as fetcher_mod + + monkeypatch.setattr( + usda_aphis_livestock, + "_fetch_tableau_dataframe", + lambda _url, _cfg: pd.read_csv(io.StringIO(_CSV)), + ) + + result = fetcher_mod.fetch( + "https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + config=ExtractionConfig(), + source_id="usda_aphis_livestock", + ) + assert result is not None + assert result.fetch_strategy == "custom:usda_aphis_livestock" + assert "USDA APHIS HPAI Confirmed Cases in Livestock - analytics snapshot" in _html(result) + + +def test_returns_none_on_missing_columns(): + bad = "date,state\n2026-01-01,CA\n2026-01-02,TX\n" + result = usda_aphis_livestock.fetch( + "https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + tableau_fetcher=_df_fetcher(bad), + ) + assert result is None + + +def test_usda_scraper_output_reaches_insight_llm(monkeypatch): + monkeypatch.setattr( + usda_aphis_livestock, + "_fetch_tableau_dataframe", + lambda _url, _cfg: pd.read_csv(io.StringIO(_CSV)), + ) + + fdoc = FilteredDocument( + result_id="r-usda-1", + question_id="q-usda-1", + url="https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + canonical_url="https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + domain="aphis.usda.gov", + title="USDA APHIS HPAI Confirmed Cases in Livestock", + snippet="Dashboard", + published_date=None, + file_type="html", + relevance_score=1.0, + credibility_score=1.0, + final_score=1.0, + source_tier="official", + is_official_domain=True, + selection_reasons=["test"], + extraction_priority=1, + extraction_mode="full", + expected_value="high", + source_id="usda_aphis_livestock", + region="United States", + question_text="How many livestock detections are reported?", + ) + + question = ForecastQuestion( + id="q-usda-1", + text="How many HPAI confirmed cases in livestock are reported in the US?", + created_at=datetime(2026, 1, 1, tzinfo=timezone.utc), + region="United States", + pathogen="H5N1", + event_type="case_count", + ) + + docs = ExtractionPipeline(config=ExtractionConfig()).run([fdoc]) + assert len(docs) == 1 + assert docs[0].status == "success" + assert docs[0].chunks + + llm = FakeLLMClient([ + LLMResponse( + content={ + "facts": [ + { + "event_type": "case_count", + "confidence": 0.9, + "location": "United States", + "pathogen": "H5N1", + "metric_name": "confirmed_cases", + "metric_value": 8, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": None, + "data_quality": None, + "event_date": None, + "summary": "USDA cumulative count from dashboard extract.", + "quote": "Cumulative confirmed cases in livestock (from CSV rows): 8.", + } + ] + }, + input_tokens=100, + output_tokens=10, + model="gpt-4o-mini", + raw_text='{"facts": [{...}]}', + ) + ]) + insight = InsightPipeline( + llm_client=llm, + config=InsightConfig( + retrieval_top_k=1, + max_chunks_per_document=1, + low_survival_top_k=1, + ), + ).run(question, docs) + + assert insight.documents_processed == 1 + assert len(insight.records) == 1 + assert llm.call_count == 1 diff --git a/data/investigations/q1_ab_no_history.csv b/data/investigations/q1_ab_no_history.csv new file mode 100644 index 0000000..0224716 --- /dev/null +++ b/data/investigations/q1_ab_no_history.csv @@ -0,0 +1,13 @@ +question_id;forecast_version;option;probability +q1;bioscancast@2025-02-17;70-100;0,969651792406 +q1;bioscancast@2025-02-17;100-150;0,026258338114 +q1;bioscancast@2025-02-17;150-200;0,003322071015 +q1;bioscancast@2025-02-17;200+;0,000767798464 +q1;bioscancast@2025-02-20;70-100;0,978101723325 +q1;bioscancast@2025-02-20;100-150;0,020290419641 +q1;bioscancast@2025-02-20;150-200;0,001234104308 +q1;bioscancast@2025-02-20;200+;0,000373752725 +q1;bioscancast@2025-02-24;70-100;0,983592891363 +q1;bioscancast@2025-02-24;100-150;0,012312603858 +q1;bioscancast@2025-02-24;150-200;0,002995509750 +q1;bioscancast@2025-02-24;200+;0,001098995030 diff --git a/data/investigations/q1_ab_with_history.csv b/data/investigations/q1_ab_with_history.csv new file mode 100644 index 0000000..141fabb --- /dev/null +++ b/data/investigations/q1_ab_with_history.csv @@ -0,0 +1,13 @@ +question_id;forecast_version;option;probability +q1;bioscancast@2025-02-17;70-100;0,933075858689 +q1;bioscancast@2025-02-17;100-150;0,048265595551 +q1;bioscancast@2025-02-17;150-200;0,013013367458 +q1;bioscancast@2025-02-17;200+;0,005645178301 +q1;bioscancast@2025-02-20;70-100;0,997874386081 +q1;bioscancast@2025-02-20;100-150;0,001907599059 +q1;bioscancast@2025-02-20;150-200;0,000160697486 +q1;bioscancast@2025-02-20;200+;0,000057317373 +q1;bioscancast@2025-02-24;70-100;0,999910113447 +q1;bioscancast@2025-02-24;100-150;0,000089886553 +q1;bioscancast@2025-02-24;150-200;0,000000000000 +q1;bioscancast@2025-02-24;200+;0,000000000000 diff --git a/data/runs_ab_no_history/q1/traj_20250217/documents.json b/data/runs_ab_no_history/q1/traj_20250217/documents.json new file mode 100644 index 0000000..1de53ae --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/documents.json @@ -0,0 +1,742 @@ +[ + { + "id": "doc-066ba72014154b3dbb1d75402a7afb24", + "result_id": "066ba72014154b3dbb1d75402a7afb24", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:34:38.603159+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-066ba72014154b3dbb1d75402a7afb24-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-066ba72014154b3dbb1d75402a7afb24-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-066ba72014154b3dbb1d75402a7afb24-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-066ba72014154b3dbb1d75402a7afb24-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-3a009fb36ea949c8a87c6d3417b54e40", + "result_id": "3a009fb36ea949c8a87c6d3417b54e40", + "source_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:34:45.813801+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-16T23:59:31+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-3a009fb36ea949c8a87c6d3417b54e40-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-4c5d939fc02e48fb8eed32aba3780f7a", + "result_id": "4c5d939fc02e48fb8eed32aba3780f7a", + "source_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:34:59.354584+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-15T05:59:40+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-4c5d939fc02e48fb8eed32aba3780f7a-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-4c5d939fc02e48fb8eed32aba3780f7a-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-4c5d939fc02e48fb8eed32aba3780f7a-c2", + "chunk_index": 2, + "text": "\u2022 11,966 wild birds detected as of 2/11/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 159,307,978 poultry affected as of 2/14/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 968 dairy herds affected as of 2/12/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/11/2025", + "2/14/2025", + "2/12/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-b15ad9f88fe4446bae8de548ca56be83", + "result_id": "b15ad9f88fe4446bae8de548ca56be83", + "source_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:35:08.937710+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-07T11:32:27+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-b15ad9f88fe4446bae8de548ca56be83-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b15ad9f88fe4446bae8de548ca56be83-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b15ad9f88fe4446bae8de548ca56be83-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b15ad9f88fe4446bae8de548ca56be83-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b15ad9f88fe4446bae8de548ca56be83-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "result_id": "5fda5c04014a45c6aa6a2957c95fd4a5", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:35:10.202747+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-750289852c7a48c9af12bd274e1577cf", + "result_id": "750289852c7a48c9af12bd274e1577cf", + "source_url": "https://www.latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "domain": "latimes.com", + "fetched_at": "2026-07-14T23:35:14.643562+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "title": "Bird flu infections in dairy cows are more widespread than we thought, according to a new CDC study", + "published_date": "2025-02-13T00:00:00", + "language": "en", + "page_count": null, + "char_count": 3937, + "token_count": 834, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-750289852c7a48c9af12bd274e1577cf-c0", + "chunk_index": 0, + "text": "\u2022 Share via\n\u2022 CDC report shows H5N1 infection in veterinarians who did not know they were working with infected cattle\n\u2022 The veterinarians had no symptoms but have antibodies in their blood\n\u2022 One of the veterinarians worked in two states where no known H5N1 infections were reported in cows: South Carolina and Georgia\nA new study published by the U.S. Centers for Disease Control and Prevention shows that the H5N1 bird flu virus is probably circulating undetected in livestock in many parts of the country and may be infecting unaware veterinarians.\nIn the health agency\u2019s Morbidity and Mortality Weekly Report, a group of researchers from the CDC, the Ohio Department of Health and the American Assn. of Bovine Practitioners, reported the results of an analysis they conducted on 150 bovine, or cow, veterinarians from 46 states and Canada.\nThey found that three of them had antibodies for the H5N1 bird flu virus in their blood. However, none of the infected vets recalled having any symptoms \u2014 including conjunctivitis, or pink eye, the most commonly reported symptom in human cases.\nThe three vets also reported to investigators that they had not worked with cattle or poultry known to be infected with the virus. In one case, a vet reported having practiced only in Georgia (on dairy cows) and South Carolina (on poultry) \u2014 two states that have not reported H5N1 infections in dairy cows.\nSeema Lakdawala, a microbiologist at Emory University in Atlanta \u2014 who was not involved in the research \u2014 said she was surprised that only 2% of the veterinarians surveyed tested positive for the antibodies, considering another CDC study showed that 17% of dairy workers sampled had been infected. But she said she was even more surprised that none of them had known they were infected or that they had worked with infected animals.\n\u201cThese surprising results indicate that serum surveillance studies are important to inform risk of infections that are going undiagnosed,\u201d she said. \u201cVeterinarians are on the front line of the outbreak, and increased biosafety practices like respiratory and eye protection should reduce their exposure risk.\u201d\nJennifer Nuzzo, director of the Pandemic Center at Brown University, described the study as a \u201cgood and bad news story.\u201d\n\u201cOn one hand, we see concerning evidence that there may be more H5N1 outbreaks on farms than are being reported,\u201d she said. \u201cOn the other hand, I\u2019m reassured that there isn\u2019t evidence that infections among vets have been widespread. This means there\u2019s more work that can and should be done to prevent the virus from spreading to more farms and sickening workers.\u201d\nThe analysis was conducted in September 2024. At that time, there had been only four human cases reported, and the infection was believed to be restricted to dairy cattle in 14 states. Since then, 68 people have been infected \u2014 40 working with infected dairy cows \u2014 and the virus is reported have infected herds in 16 states.\nJohn Korslund, a retired U.S. Department of Agriculture scientist, said in an email that finding H5N1 antibodies in the blood of veterinarians was an interesting \u201cbut very imprecise way to measure state cattle incidence.\u201d But it underscored \u201cthat humans ARE susceptible to subclinical infections and possible reassortment risks, which we already knew, I guess.\u201d\nReassortment occurs when a person or animal is infected with more than one influenza virus, allowing the two to mingle and exchange \u201chardware,\u201d potentially creating a new, more virulent strain.\nMore important, he said, the D1.1 version of the strain \u2014 which has been detected in Nevada dairy cattle and one person living in the state \u2014 is \u201cchanging the landscape. ... [P]eople may be more more susceptible (or not) with a greater potential for severeness (or not).\u201d\n\u201cI\u2019m confident that we\u2019ll find it in other states. Its behavior and transmissibility within and between cattle herds is still pretty much a black box,\u201d he said.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 834, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-14T14:42:46+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-214c1516437c42e58fdb85df008e8376", + "result_id": "214c1516437c42e58fdb85df008e8376", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "fetched_at": "2026-07-14T23:37:18.840156+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "title": "Bird flu: First death from H5N1 strain reported in US", + "published_date": "2025-01-07T16:25:05+00:00", + "language": "en", + "page_count": null, + "char_count": 2872, + "token_count": 606, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-214c1516437c42e58fdb85df008e8376-c0", + "chunk_index": 0, + "text": "The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred.\nThe patient had been taken to hospital after contracting a major strain of bird flu, known as H5N1.\nLouisiana health department said they were over the age of 65, and had other underlying health conditions.\nIt said their public health investigation had not found evidence of person-to-person transmission, or any other cases.\nBird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. In very rare cases, it can also infect humans.\nThe state's health department added the person had contracted bird flu after being exposed to a personal flock of birds and wild birds.\n\"While the current public health risk for the general public remains low, people who work with birds, poultry or cows, or have recreational exposure to them, are at higher risk,\" it said.\nThere have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC).", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US", + "page_number": null, + "table_data": null, + "token_count": 228, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-214c1516437c42e58fdb85df008e8376-c1", + "chunk_index": 1, + "text": "Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Bird migration has resulted in outbreaks of the avian flu in domestic and wild birds.\nThe H5N1 virus is the major strain circulating among wild birds worldwide, and emerged in China in the late 1990s.\nAlthough infection of humans is very rare, it occurs via transmission from birds.\nAlmost all cases of infection in people have been associated with close contact to infected dead or live birds, or contaminated environments.\nSince 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.\nThere has been no sustained human-to-human transmission.\nLast month, the CDC said the Louisiana patient had been infected with the D1.1variant of the virus, which has recently been detected in North America.\nA 13-year-old girl in Canada was taken to hospital with the same D1.1 variant in November 2024, according to a paper published in The New England Journal of Medicine.\nIt is different to the B3.13 variant, which - during the past year - has been on the rise among cows in the US.\nIn September 2024, a person in Missouri recovered from bird flu after being treated in hospital.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > What is bird flu?", + "page_number": null, + "table_data": null, + "token_count": 263, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-214c1516437c42e58fdb85df008e8376-c2", + "chunk_index": 2, + "text": "According to the WHO, symptoms of a H5N1 infection include a cough, sore throat, fever (often over 38C), muscle aches and general feelings of malaise.\nPeople with the virus may also display other non-respiratory symptoms such as conjunctivitis.\nThe WHO added that H5N1 has also been detected in people without symptoms who had contact with infected animals or their environments.\nWhile the risk to humans is low, the constantly evolving virus is monitored for all changes, including the potential to become easily transmissible from person to person.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > Bird flu symptoms", + "page_number": null, + "table_data": null, + "token_count": 115, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T22:05:39+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-860356a83f6549fc95c5d4cbe368bd72", + "result_id": "860356a83f6549fc95c5d4cbe368bd72", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:38:44.701125+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9", + "result_id": "e4c37fd63de344a9bf6f7f83cdfaa4c9", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "fetched_at": "2026-07-14T23:38:58.599900+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN", + "published_date": "2024-12-18T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4156, + "token_count": 821, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9-c0", + "chunk_index": 0, + "text": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States.\nThe agency said Wednesday that the person was exposed to sick and dead birds in backyard flocks; this is the first US bird flu case linked to a backyard flock.\n\u201cIt is believed that the patient that was reported by Louisiana had exposure to sick or dead birds on their property. These are not commercial poultry, and there was no exposure to dairy cows or their related products,\u201d said Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC.\nFederal officials declined to answer questions about the patient\u2019s symptoms or their current condition. They instead referred all inquiries about the case to the Louisiana Department of Health, which is leading the investigation.\nAccording to state officials, the patient is experiencing severe respiratory illness related to H5N1 and is hospitalized in critical condition. The person is older than 65 and has underlying medical conditions that increased their risk of flu complications, the Louisiana Department of Health said in an email to CNN.\nThis virus, D1.1, is the same type found in recent human cases in Canada and Washington state and detected in wild birds and poultry in the United States. It\u2019s different from B3.13, the type detected in dairy cows, some poultry outbreaks and other cases in humans across the United States.\nThe CDC said it\u2019s working on additional genomic sequencing of samples from the patient, who is from southwestern Louisiana, and the investigation into the patient\u2019s exposure is still underway.\nBird flu has been linked with severe human illness and death in other countries, but no person-to-person spread has been detected.\n\u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement.\nIn California, Gov. Gavin Newsom declared a state of emergency Wednesday over the continued spread of H5N1 bird flu in that state.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 420, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\nNewsom said the measure was necessary because, despite intense efforts to contain it, the virus had spread beyond the Central Valley to four dairies in the southern part of the state.\n\u201cThis proclamation is a targeted action to ensure government agencies have the resources and flexibility they need to respond quickly to this outbreak,\u201d he said in a news release. \u201cWhile the risk to the public remains low, we will continue to take all necessary steps to prevent the spread of this virus.\u201d\nThe emergency declaration will give state agencies greater flexibility with staffing and free up more funding for the response.\nOf the 61 confirmed human cases of bird flu in the US this year, 34 have been in California. Nearly all of those have been in dairy farm workers, according to the CDC.\nThe Louisiana case shows that precautions should be taken by people with backyard chicken flocks, hunters and other bird enthusiasts, the CDC said.\n\u201cThe cases across the US are a constellation of spillovers,\u201d said Dr. Rebecca Christofferson, a virologist at Louisiana State University\u2019s School of Veterinary Medicine. Experts still don\u2019t understand exactly how these spillovers are happening and the specific factors that increase a person\u2019s risk.\n\u201cIt\u2019s just kind of a black box at the moment that a lot of people are trying to answer these questions on,\u201d Christofferson said.\nThe CDC says the best approach is to avoid exposure. Infected birds can shed viruses in their saliva, mucus and feces, and other animals may shed them in their respiratory secretions and bodily fluids, including unpasteurized milk from cows.\n\u201cPeople who work with or have recreational exposure to infected animals are at higher risk of infection, and it\u2019s extremely important that they follow CDC recommended precautions when around infected or potentially infected animals, a message that we will continue to magnify given recent cases,\u201d Daskalakis said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 401, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-09T23:57:07+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-b9c596e3e55d479f8e96b9168503830c", + "result_id": "b9c596e3e55d479f8e96b9168503830c", + "source_url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "fetched_at": "2026-07-14T23:39:06.242159+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "title": "'Worrisome' mutations found in H5N1 bird flu virus isolated from Canadian teenager", + "published_date": "2024-12-31T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4841, + "token_count": 1004, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-b9c596e3e55d479f8e96b9168503830c-c0", + "chunk_index": 0, + "text": "\u2022 Share via\nThe fate of a Canadian teenager who was infected with H5N1 bird flu in early November, and subsequently admitted to an intensive care unit, has finally been revealed: She has fully recovered.\nBut genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d\nThe case was published Tuesday in a special edition of the New England Journal of Medicine that explored H5N1 cases from 2024 in North America. In one study, doctors and researchers who worked with the Canadian teenager published their findings. In the other, public health officials from across the U.S. \u2014 from the Centers for Disease Control and Prevention, as well as state and local health departments \u2014 chronicled the 46 human cases that occurred between March and October.\nThere have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024.\nIn the case of the 13-year-old Canadian child, the girl was admitted to a local emergency room on Nov. 4 having suffered from two days of conjunctivitis (pink eye) in both eyes and one day of fever. The child, who had a history of asthma, an elevated body-mass index and Class 2 obesity, was discharged that day with no treatment.\nOver the next three days, she developed a cough and diarrhea and began vomiting. She was taken back to the ER on Nov. 7 in respiratory distress and with a condition called hemodynamic instability, in which her body was unable to maintain consistent blood flow and pressure. She was admitted to the hospital.\nOn Nov. 8, she was transferred to a pediatric intensive care unit at another hospital with respiratory failure, pneumonia in her left lower lung, acute kidney injury, thrombocytopenia (low platelet numbers) and leukopenia (low white blood cell count).\nShe tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. This finding prompted her caregivers to test for bird flu; she tested positive.\nAs the disease progressed over the next few days, she was intubated and put on extracorporeal membrane oxygenation (ECMO) \u2014 a life support technique that temporarily takes over the function of the heart and lungs for patients with severe heart or lung conditions.\nShe was also treated with three antiviral medications, including oseltamivir (brand name Tamiflu), amantadine (Gocovri) and baloxavir (Xofluza).\nBecause of concerns about the potential for a cytokine storm \u2014 a potentially lethal condition in which the body releases too many inflammatory molecules \u2014 she was put on a daily regimen of plasma exchange therapy, in which the patient\u2019s plasma is removed in exchange for donated, health plasma.\nAs the days went by, her viral load began to decrease; on Nov. 16, eight days after she\u2019d been admitted, she tested negative for the virus.\nThe authors of the report noted, however, that the viral load remained consistently higher in her lower lungs than in her upper respiratory tract \u2014 suggesting that the disease may manifest in places not currently tested for it (like the lower lungs) even as it disappears from those that are tested (like the mouth and nose).\nShe fully recovered and was discharged sometime after Nov. 28, when her intubation tube was removed.\nGenetic sequencing of the virus circulating in the teenager showed it was similar to the one circulating in wild birds, the D1.1 version. It\u2019s a type of H5N1 bird flu that is related, but distinct, from the type circulating in dairy cows and is responsible for the vast majority of human cases reported in the U.S. \u2014 most of which were acquired via dairy cows or commercial poultry. This is also the same version of the virus found in a Louisiana patient who experienced severe disease, and it showed a few mutations that researchers say increases the virus\u2019 ability to replicate in human cells.\nIn the Louisiana case, researchers from the CDC suggested the mutations arose as it replicated in the patient and were were not likely present in the wild.\nIrrespective of where and when they occurred, said Jennifer Nuzzo, director of the Pandemic Center at Brown University in Providence, R.I., \u201cit is worrisome because it indicates that the virus can change in a person and possibly cause a greater severity of symptoms than initial infection.\u201d\nIn addition, said Nuzzo \u2014 who was not involved in the research \u2014 while there\u2019s evidence these mutations occurred after the patients were infected, and therefore not circulating in the environment \u201cit increases worries that some people may experience more severe infection than other people. Bottom line is that this is not a good virus to get.\u201d", + "chunk_type": "prose", + "heading": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager", + "page_number": null, + "table_data": null, + "token_count": 1004, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-11T03:55:59+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/filtered.json b/data/runs_ab_no_history/q1/traj_20250217/filtered.json new file mode 100644 index 0000000..0421aaa --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/filtered.json @@ -0,0 +1,262 @@ +[ + { + "result_id": "066ba72014154b3dbb1d75402a7afb24", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "3a009fb36ea949c8a87c6d3417b54e40", + "question_id": "q1", + "url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-16T23:59:31+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "4c5d939fc02e48fb8eed32aba3780f7a", + "question_id": "q1", + "url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-15T05:59:40+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "b15ad9f88fe4446bae8de548ca56be83", + "question_id": "q1", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "5fda5c04014a45c6aa6a2957c95fd4a5", + "question_id": "q1", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "750289852c7a48c9af12bd274e1577cf", + "question_id": "q1", + "url": "https://www.latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "canonical_url": "https://latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "domain": "latimes.com", + "title": "Bird flu infections in dairy cows are more widespread than we thought, according to a new CDC study - Los Angeles Times", + "snippet": "At that time, there had only been four human cases reported, and the infection was believed to be restricted to dairy cattle in 14 states. Since then, 68 people have been infected \u2014 40 working with infected dairy cows \u2014 and the virus is reported have infected herds in 16 states. John Korslund, a retired U.S. Department of Agriculture scientist, said in an email that finding H5N1 antibodies in the blood of veterinarians was an interesting \u201cbut very imprecise way to measure state cattle incidence.\u201d But it underscored \u201cthat humans ARE susceptible to subclinical infections and possible reassortment risks, which we already knew, I guess.\u201d", + "published_date": "2025-02-13T18:00:50+00:00", + "file_type": null, + "relevance_score": 0.95, + "credibility_score": 0.8, + "final_score": 0.875, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific", + "official_data" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "214c1516437c42e58fdb85df008e8376", + "question_id": "q1", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "relevance_score": 0.9, + "credibility_score": 0.8, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific", + "official_data" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "860356a83f6549fc95c5d4cbe368bd72", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific", + "official_data" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "e4c37fd63de344a9bf6f7f83cdfaa4c9", + "question_id": "q1", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "relevance_score": 0.8, + "credibility_score": 0.8, + "final_score": 0.8, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific", + "official_data" + ], + "extraction_priority": 9, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "b9c596e3e55d479f8e96b9168503830c", + "question_id": "q1", + "url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "title": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager - Los Angeles Times", + "snippet": "'Worrisome' mutations found in H5N1 bird flu virus in Canadian teen - Los Angeles Times But genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024. She tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. L.A. County health officials warn pet owners to avoid raw cat food after feline dies of bird flu", + "published_date": "2025-01-01T00:03:00+00:00", + "file_type": null, + "relevance_score": 0.75, + "credibility_score": 0.7, + "final_score": 0.725, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific", + "official_data" + ], + "extraction_priority": 10, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/forecast.json b/data/runs_ab_no_history/q1/traj_20250217/forecast.json new file mode 100644 index 0000000..9b90f2b --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/forecast.json @@ -0,0 +1,156 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9696517924061445, + "100-150": 0.02625833811431085, + "150-200": 0.0033220710153221583, + "200+": 0.00076779846422236 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9696517924061445, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 0.02625833811431085, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 0.0033220710153221583, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 0.00076779846422236, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.88, + 0.08, + 0.03, + 0.01 + ], + "ok": true, + "reference_class": "Human H5N1 cases in countries with outbreaks since 2003", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in cases, with 9 confirmed by January 2025.", + "H5N1 has been detected in several states, indicating potential wider spread.", + "Historical global case count shows potential for significant outbreaks." + ], + "drivers_down": [ + "Only 9 cases confirmed by January 2025 indicates slow progression.", + "Most US cases have been linked to commercial agriculture, not community spread.", + "Limited time until February 2025 for a dramatic increase in cases." + ], + "why_might_be_wrong": "The base rate and global data might inadequately capture the local dynamics and public health responses in the US.", + "rationale": "The base rate from historical data suggests a low probability of high case numbers. With only 9 cases confirmed by January 2025, the likelihood of reaching 70 cases by February 28, 2025, is low. Factors like the recent increase in cases and potential for wider spread push the probability slightly up. However, the time frame is short, and most cases are linked to agriculture, limiting potential for rapid increase, making lower case counts more likely.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.85, + 0.1, + 0.03, + 0.02 + ], + "ok": true, + "reference_class": "Historical outbreaks of H5N1 in the US and globally", + "base_rate": 0.05, + "drivers_up": [ + "Recent increase in cases from 61 in December 2024 to 68 in September 2024 suggests potential for further spread.", + "Past reports indicate H5N1 infections in multiple states, not just confined to one area, which could facilitate wider spread." + ], + "drivers_down": [ + "The cumulative number of cases reported as of January 2025 is only 9, suggesting a significant slowing of new cases compared to late 2024.", + "Containment and control measures may have been enacted following the sudden increase in cases, reducing further spread." + ], + "why_might_be_wrong": "The forecast might be wrong if there is a sudden outbreak or if the virus adapts, leading to a significant increase in cases before the target date.", + "rationale": "With only 9 confirmed cases reported as of January 2025 and the historical base rate of substantial outbreaks being low, it is unlikely that the number of cases will reach the higher thresholds by February 28, 2025. Despite a surge in cases in late 2024, the current evidence does not suggest a continued rapid increase. Therefore, the probability of remaining in the lowest range (70-100 cases) is highest.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.6, + 0.25, + 0.1, + 0.05 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in countries with reported human cases", + "base_rate": 0.05, + "drivers_up": [ + "Recent increase in cases from 9 to 68 in a short period, indicating a possible outbreak.", + "High number of cases in California suggests localized spread.", + "Confirmed human-to-human transmission in recent cases could lead to more cases." + ], + "drivers_down": [ + "Historically low human-to-human transmission of H5N1 globally.", + "Containment measures typically effective in the US to prevent large outbreaks.", + "Current case count is still low compared to thresholds." + ], + "why_might_be_wrong": "Unexpected changes in transmission dynamics or containment failures could lead to a rapid increase in cases.", + "rationale": "Given the recent increase in cases to 68 and localized clusters, there is a potential for more cases, but given historical transmission patterns and the containment capabilities of the US, it is unlikely to exceed 100 cases. Therefore, the highest probability is assigned to the 70-100 range.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-3aa7e365b48b", + "ins-c7bbcc04ee19", + "ins-e58a8f8096ee", + "ins-8982afa24d84", + "ins-c9e19f76cc5c", + "ins-1a3745d41416", + "ins-0360c1acd31e", + "ins-35ef7cd18dc5", + "ins-3f918a8e7616", + "ins-b831a7252894", + "ins-5ededcaf4bdd", + "ins-f8af3289f09f", + "ins-b1f5c93ea05b", + "ins-031f36115918" + ], + "budget_summary": { + "total_input_tokens": 6000, + "total_output_tokens": 753, + "total_tokens": 6753, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 6000, + "output_tokens": 753, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/insight.json b/data/runs_ab_no_history/q1/traj_20250217/insight.json new file mode 100644 index 0000000..fca7de1 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/insight.json @@ -0,0 +1,445 @@ +{ + "records": [ + { + "id": "ins-031f36115918", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Total confirmed cases of A(H5) virus in the US since 2022.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:16.363769+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c3", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-b831a7252894", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 68.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-09-01T00:00:00", + "event_date_precision": "month", + "summary": "As of September 2024, there had been 68 human cases reported, with 40 working with infected dairy cows.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:21.097283+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-750289852c7a48c9af12bd274e1577cf", + "chunk_id": "doc-750289852c7a48c9af12bd274e1577cf-c0", + "source_url": "https://www.latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "quote": "At that time, there had been only four human cases reported, and the infection was believed to be restricted to dairy cattle in 14 states." + } + ] + }, + { + "id": "ins-5ededcaf4bdd", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 66.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed H5N1 cases in the US since 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:23.043115+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-214c1516437c42e58fdb85df008e8376", + "chunk_id": "doc-214c1516437c42e58fdb85df008e8376-c0", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "There have been 66 confirmed cases of H5N1 bird flu in the US since 2024" + }, + { + "document_id": "doc-b9c596e3e55d479f8e96b9168503830c", + "chunk_id": "doc-b9c596e3e55d479f8e96b9168503830c-c0", + "source_url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "quote": "There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024." + } + ] + }, + { + "id": "ins-c9e19f76cc5c", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human infections in the U.S. for the year, with a significant number in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:25.348970+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-860356a83f6549fc95c5d4cbe368bd72", + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-0360c1acd31e", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "first known case of infection in the U.S. linked to sick and dead birds in backyard flocks.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:25.979145+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-860356a83f6549fc95c5d4cbe368bd72", + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "the first known case of infection in the U.S. to have those origins." + } + ] + }, + { + "id": "ins-35ef7cd18dc5", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 60.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "includes 60 other cases linked to commercial agriculture.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:25.979197+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-860356a83f6549fc95c5d4cbe368bd72", + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the 60 other cases, 58 were linked to commercial agriculture" + } + ] + }, + { + "id": "ins-f8af3289f09f", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed human cases of bird flu in the US this year, with 34 in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:28.139806+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9", + "chunk_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9-c1", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "Of the 61 confirmed human cases of bird flu in the US this year, 34 have been in California." + } + ] + }, + { + "id": "ins-3f918a8e7616", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of H5N1 reported in Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:18.971741+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-e58a8f8096ee", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-21T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of H5N1 reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:18.974245+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-c7bbcc04ee19", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of H5N1 reported in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:18.974624+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-3aa7e365b48b", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human cases of influenza A(H5) virus in the US since the last risk assessment.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:16.453033+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5", + "chunk_id": "doc-5fda5c04014a45c6aa6a2957c95fd4a5-c1", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-b1f5c93ea05b", + "question_id": "q1", + "event_type": "other", + "confidence": 0.5, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 954.0, + "metric_unit": null, + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2003-01-01T00:00:00", + "event_date_precision": "day", + "summary": "Since 2003, the WHO has counted 954 confirmed human cases of bird flu, of which about half have died.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:23.216623+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-214c1516437c42e58fdb85df008e8376", + "chunk_id": "doc-214c1516437c42e58fdb85df008e8376-c1", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died." + } + ] + }, + { + "id": "ins-8982afa24d84", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:25.263936+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-860356a83f6549fc95c5d4cbe368bd72", + "chunk_id": "doc-860356a83f6549fc95c5d4cbe368bd72-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + }, + { + "id": "ins-1a3745d41416", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Louisiana", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "active", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "First severe case of H5N1 bird flu in the US, linked to backyard flock, patient hospitalized in critical condition.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:39:28.407554+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9", + "chunk_id": "doc-e4c37fd63de344a9bf6f7f83cdfaa4c9-c0", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States." + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 83070, + "total_output_tokens": 1978, + "total_tokens": 85048, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 83070, + "output_tokens": 1978, + "calls": 37 + } + } + }, + "documents_processed": 10, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/manifest.json b/data/runs_ab_no_history/q1/traj_20250217/manifest.json new file mode 100644 index 0000000..4463523 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250217", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:29:22.182415+00:00", + "completed_at": "2026-07-14T23:39:38.994702+00:00", + "stage_timings": { + "search": 303.416, + "filter": 3.285, + "extract": 279.624, + "insight": 21.6, + "forecast": 8.482 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": true + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-3a009fb36ea949c8a87c6d3417b54e40", + "result_id": "3a009fb36ea949c8a87c6d3417b54e40", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.0 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 85446, + "output_tokens": 2402, + "calls": 40 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 6000, + "output_tokens": 753, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 95, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 1986, + "output_tokens": 329, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 83070, + "output_tokens": 1978, + "calls": 37 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 6000, + "output_tokens": 753, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000116, + "filter": 0.000495, + "insight": 0.013647, + "forecast": 0.02253 + }, + "estimated_cost_usd": 0.036788 +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/question.json b/data/runs_ab_no_history/q1/traj_20250217/question.json new file mode 100644 index 0000000..7691521 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-17T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250217/search.json b/data/runs_ab_no_history/q1/traj_20250217/search.json new file mode 100644 index 0000000..b382000 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250217/search.json @@ -0,0 +1,1290 @@ +[ + { + "id": "066ba72014154b3dbb1d75402a7afb24", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:29:24.684435+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9808219178082191, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6850387135199524, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "750289852c7a48c9af12bd274e1577cf", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "canonical_url": "https://latimes.com/environment/story/2025-02-13/cdc-study-h5n1-bird-flu-in-dairy-cows-more-widespread-than-thought", + "domain": "latimes.com", + "title": "Bird flu infections in dairy cows are more widespread than we thought, according to a new CDC study - Los Angeles Times", + "snippet": "At that time, there had only been four human cases reported, and the infection was believed to be restricted to dairy cattle in 14 states. Since then, 68 people have been infected \u2014 40 working with infected dairy cows \u2014 and the virus is reported have infected herds in 16 states. John Korslund, a retired U.S. Department of Agriculture scientist, said in an email that finding H5N1 antibodies in the blood of veterinarians was an interesting \u201cbut very imprecise way to measure state cattle incidence.\u201d But it underscored \u201cthat humans ARE susceptible to subclinical infections and possible reassortment risks, which we already knew, I guess.\u201d", + "rank": 1, + "retrieved_at": "2026-07-14T23:34:25.149545+00:00", + "published_date": "2025-02-13T18:00:50+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9917808219178083, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6248302561048243, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "3a009fb36ea949c8a87c6d3417b54e40", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:29:24.684435+00:00", + "published_date": "2025-02-16T23:59:31+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6086956521739131, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "4c5d939fc02e48fb8eed32aba3780f7a", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:29:24.684435+00:00", + "published_date": "2025-02-15T05:59:40+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5692912447885646, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "b15ad9f88fe4446bae8de548ca56be83", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:29:24.684435+00:00", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9753424657534246, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5670994639666468, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "5fda5c04014a45c6aa6a2957c95fd4a5", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:29:24.684435+00:00", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9698630136986301, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5665515187611674, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "214c1516437c42e58fdb85df008e8376", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "rank": 4, + "retrieved_at": "2026-07-14T23:34:25.149603+00:00", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8904109589041096, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5608889219773674, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "860356a83f6549fc95c5d4cbe368bd72", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:34:22.300750+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.554053007742704, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "78c3465be179422aa4fef946ba7423ef", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 1, + "retrieved_at": "2026-07-14T23:34:24.035807+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.33150684931506846, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.537933293627159, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ecee4dee9edb4f4488f7fb0aff1c2db7", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "canonical_url": "https://cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "domain": "cdc.gov", + "title": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 | MMWR - CDC", + "snippet": "CDC is collaborating with the U.S. Department of Agriculture, the Food and Drug Administration, the Administration for Strategic Preparedness and Response, the Health Resources and Services Administration, the National Institute of Allergy and Infectious Diseases, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. One week earlier, the U.S. Department of Agriculture had reported a multistate outbreak of A(H5N1) viruses in dairy cows.\u00a7 A(H5N1) viruses were also detected in barn cats, birds, and other animals (e.g., one raccoon and two opossums) that lived in and around human habitations and that died on affected farms.\u00b6 Genetic sequencing of the A(H5N1) virus from infected cattle and the farm worker** identified clade 2.3.4.4b; this clade has been detected in U.S. wild birds, commercial poultry, backyard flocks, and other animals since January 2022 (2). Top Discussion CDC is collaborating with the U.S. Department of Agriculture, FDA, ASPR, the Health Resources and Services Administration, NIAID, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. CDC considers the current risk to the U.S. public from A(H5N1) viruses to be low; however, persons with exposure to infected animals or contaminated materials, including raw cow\u2019s milk, are at higher risk for A(H5N1) virus infection and should take recommended precautions, including using recommended personal protective equipment, self-monitoring for illness symptoms, and, if they are symptomatic, seeking prompt medical evaluation for influenza testing and antiviral treatment if indicated. Top Corresponding author: Shikha Garg, sgarg1@cdc.gov. Top 1Influenza Division, National Center for Immunization and Respiratory Diseases, CDC; 2One Health Office, National Center for Emerging and Zoonotic Infectious Diseases, CDC; 3Office of Public Health Data, Surveillance, and Technology, CDC; 4National Center for Immunization and Respiratory Diseases, CDC; 5Administration for Strategic Preparedness and Response, Washington, DC. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:34:25.994145+00:00", + "published_date": "2024-05-30T18:57:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.28219178082191776, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.534306134603931, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "99c2296349f44bb89996da9e99f55c53", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "domain": "cidrap.umn.edu", + "title": "Study shows 'not surprising' fatal spread of avian flu in ferrets - University of Minnesota Twin Cities", + "snippet": "International avian flu developments In global developments: Related news Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Study shows 'not surprising' fatal spread of avian flu in ferrets Vital Hil/iStock Late last week the Centers for Disease Control and Prevention (CDC) published a study showing that the current strain of H5N1 (A/Texas/37/2024) avian flu was fatal in six ferrets used as part of an experimental infection study. Household spread in pet ferrets In related news, a study out of Poland described the first documented cases of natural H5N1 cases in five pet ferrets, which occurred at the same time the country saw an uptick of H5 cases in cats in 2023. \" In Iowa, which confirmed high-path avian flu in dairy cattle last week, officials from the Iowa Department of Agriculture and Land Stewardship are requesting resources from the USDA and announcing additional response measures, including providing compensation for culled dairy cattle at a fair market value and compensation for lost milk production at a minimum of 90% of fair market value. ", + "rank": 1, + "retrieved_at": "2026-07-14T23:34:25.993893+00:00", + "published_date": "2024-06-10T20:42:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5164502680166766, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "2e3d73c618424fdb8ecf396c19a2874f", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:34:22.300574+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8904109589041096, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5142584871947589, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "bae08489ceff4bc1abf1ea11240318d0", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 2, + "retrieved_at": "2026-07-14T23:34:24.035913+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.25479452054794516, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4943924955330554, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ca96236662d647c5990b9a4a92839e51", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:34:22.301187+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.48433070279928525, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "e4c37fd63de344a9bf6f7f83cdfaa4c9", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 10, + "retrieved_at": "2026-07-14T23:34:25.149930+00:00", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.47421381774865995, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "665efe61895e42e9abdc157bd92f0b52", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://www.ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "canonical_url": "https://ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "domain": "ladysmithchronicle.com", + "title": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chronicle", + "snippet": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chemainus Chronicle News As we enter 2025, Dr. Theresa Tam has her eye on H5N1 bird flu, an emerging virus that had its first human case in Canada this year. At the same time, Canada\u2019s chief public health officer is closely monitoring measles \u2014 a virus that was eliminated in this country more than two decades ago, but is making an accelerated resurgence. \u201cWhat I am particularly concerned about is that this virus has demonstrated the capability of a whole range of clinical outcomes, from asymptomatic infection \u2026 all the way to rare cases of severe illness,\u201d said Tam in a year-end interview on Dec. 18. News", + "rank": 1, + "retrieved_at": "2026-07-14T23:34:23.052323+00:00", + "published_date": "2024-12-27T19:45:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8602739726027397, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.47211435378201316, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "4605a74cb7714312bd4cacceccaea5eb", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.cnn.com/2024/06/05/health/h5n1-bird-flu-in-wastewater/index.html", + "canonical_url": "https://cnn.com/2024/06/05/health/h5n1-bird-flu-in-wastewater/index.html", + "domain": "cnn.com", + "title": "First national look at H5N1 bird flu in wastewater suggests limited spread in US - CNN", + "snippet": "In a study published May 29, the CDC estimated that there was a 72% to 77% chance that current surveillance would detect one human case of H5N1 in an emergency room or urgent care clinic monthly, provided the person had symptoms similar in severity to a case of seasonal flu, and there were at least 100 cases of H5N1 in the population. The data, released Monday by the nonprofit WastewaterSCAN network, showed detections of the H5 protein portion of the flu virus in sewage from 14 water treatment plants in five states, mostly in Texas and Michigan, suggesting that an ongoing outbreak in dairy cattle may largely be confined to states that have already been identified as having affected herds. \u201cWhile these findings indicate that existing flu surveillance systems are likely to detect at least one novel influenza case before the virus has spread widely, CDC is asking that health care providers remain vigilant for signs and symptoms of influenza virus infection over the summer and maintain high rates of testing,\u201d the agency said in a news release.\u00a0 \u201cIn the case of Amarillo in Texas, for example, they had a dairy processing plant that was making processed dairy products, and their waste stream discharges into the wastewater treatment plant because milk, raw milk from the local area, was coming into that plant with H5N1,\u201d Boehm said. But when asked to estimate whether one thousand, tens of thousands or hundreds of thousands of cows had been affected, Deeble said he could not, underscoring the large degree of uncertainty involved in understanding the scope of the outbreak. ", + "rank": 4, + "retrieved_at": "2026-07-14T23:34:25.994080+00:00", + "published_date": "2024-06-05T23:42:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.462580405002978, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "b9c596e3e55d479f8e96b9168503830c", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "title": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager - Los Angeles Times", + "snippet": "'Worrisome' mutations found in H5N1 bird flu virus in Canadian teen - Los Angeles Times But genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024. She tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. L.A. County health officials warn pet owners to avoid raw cat food after feline dies of bird flu", + "rank": 9, + "retrieved_at": "2026-07-14T23:34:23.052492+00:00", + "published_date": "2025-01-01T00:03:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.873972602739726, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4601508834623784, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "7f7b6536cc444df8b5c018a5eeb7828b", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "canonical_url": "https://latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "domain": "latimes.com", + "title": "California reports a total of eight H5N1 bird flu outbreaks among dairy herds - Los Angeles Times", + "snippet": "Bird flu outbreaks are rising among California dairy herds - Los Angeles Times California reports a total of eight H5N1 bird flu outbreaks among dairy herds The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. \u201cBovine vaccines may prove to be an important tool to eventually help eliminate the virus from the nation\u2019s dairy cattle herd, but developing a vaccine requires many steps and it will take time to test, approve, and distribute a successful vaccine,\u201d he said. Three more California dairy herds infected with H5N1 bird flu H5N1 bird flu infections suspected in California dairy herds", + "rank": 9, + "retrieved_at": "2026-07-14T23:34:24.036451+00:00", + "published_date": "2024-09-13T23:34:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5726027397260274, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4495791145523129, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "72dcd2343b09470e89a2c9784e3dab73", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "domain": "cidrap.umn.edu", + "title": "CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. A wastewater dashboard; states report more H5N1 in dairy herds Smederevac/iStock The Centers for Disease Control and Prevention (CDC) today unveiled a new influenza A wastewater tracker, part of its surveillance for H5N1 avian influenza, as three states reported more detections in dairy herds. H5N1 detected in 4 more dairy herds In other developments, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today reported four more H5N1 detections in dairy herds, raising the total to 46. A wastewater dashboard; states report more H5N1 in dairy herds The tracker will help with surveillance, but it doesn't distinguish the influenza A subtype or determine the source of the virus. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:34:25.994004+00:00", + "published_date": "2024-05-14T20:54:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23835616438356166, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44818344252531267, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "8c82eb5e7b0f48dfba166e7c7a81c4f4", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1/", + "canonical_url": "https://statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1", + "domain": "statnews.com", + "title": "WHO's Farrar: Social context is key to halting bird flu spread - STAT - STAT", + "snippet": "It\u2019s important to keep that experience in mind, he told STAT Monday, as the H5N1 bird flu virus now spreads among dairy cattle in the U.S. Farrar stressed that the social context is key in responding to disease threats like H5N1, noting that a similar reluctance among dairy farmers to report outbreaks or allow testing of their workers is adding to the challenges in assessing how much transmission is occurring and the risk it poses to people. Home Don't miss out Subscribe to STAT+ today, for the best life sciences journalism in the industry WHO\u2019s top scientist learned a hard lesson about H5N1 two decades ago: Stopping it takes more than biology By Helen Branswell May 7, 2024 Jeremy Farrar, now the World Health Organization\u2019s chief scientist, was working in Vietnam 20 years ago when the H5N1 virus started to spread across Asia \u2014 at that point in poultry. advertisement \u201cYou can\u2019t just take the virus and the biological surveillance and divorce it from the environment and the social construct that it\u2019s happening in,\u201d Farrar said in an interview from WHO headquarters in Geneva. Trending Recommended Recommended Stories STAT\u2019s Casey Ross and Bob Herman named 2024 Pulitzer Prize finalists STAT Plus: Endo Health ordered to pay more than $1.5 billion in opioid criminal case advertisement STAT Plus: Brain biopsies on \u2018vulnerable\u2019 patients at Mount Sinai set off alarm bells at FDA, documents show STAT Sign up for Morning Rounds Understand how science, health policy, and medicine shape the world every day While he believes the risk of a human flu pandemic triggered by the H5N1 virus is low, should it happen, the social context will also be crucial, Farrar continued.", + "rank": 6, + "retrieved_at": "2026-07-14T23:34:24.036229+00:00", + "published_date": "2024-05-07T08:34:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.442135199523526, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "a83d01e8954e4e1383cb40cdde159c43", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.austintexas.gov/news/status-update-traces-h5n1-detected-austin-travis-county-detected-wastewater-surveillance-risk-public-remains-low", + "canonical_url": "https://austintexas.gov/news/status-update-traces-h5n1-detected-austin-travis-county-detected-wastewater-surveillance-risk-public-remains-low", + "domain": "austintexas.gov", + "title": "Status Update: Traces of H5N1 Detected in Austin-Travis County detected in wastewater surveillance. Risk to public remains low. - AustinTexas.gov", + "snippet": "Action Navigation GTranslate Main menu Resident Business Government Departments Frequently Viewed Departments Connect Status Update: Traces of H5N1 Detected in Austin-Travis County detected in wastewater surveillance. Three human cases of H5N1 associated with exposure to sick cows have been reported in the U.S., all with mild illness, but it\u2019s important to be aware of the signs and symptoms of the virus, especially for those who work around cattle and other animals. One Reported Case of H5N1 in a Person in Texas On April 1, 2024, the Texas Department of State Health Services issued a health alert\u00a0reporting the first human case of H5N1 in Texas. The existence of this case expands the possibilities for potential human exposure to the influenza virus that is now being seen in wild birds, poultry and mammals such as dairy cattle. City of Austin Austin Public Health (APH) continuously monitors communicable diseases through various methods, wastewater surveillance being one of them. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:34:25.994265+00:00", + "published_date": "2024-06-06T12:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "official", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3013698630136986, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.42721773164298477, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "6fd0cd179b784a2f83dc447db85ba76d", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://www.forbes.com/sites/victoriaforster/2024/11/10/canada-reports-first-human-case-of-h5n1-bird-flu/", + "canonical_url": "https://forbes.com/sites/victoriaforster/2024/11/10/canada-reports-first-human-case-of-h5n1-bird-flu", + "domain": "forbes.com", + "title": "Canada Reports First Human Case Of H5N1 Bird Flu - Forbes", + "snippet": "Canada Reports First Human Case Of H5N1 Bird Flu Canada Reports First Human Case Of H5N1 Bird Flu Canada Reports First Human Case Of H5N1 Bird Flu A teenager in British Columbia, Canada has been hospitalized with a presumed case of H5N1 bird flu, the first detected human case in the country from the recent outbreak. \u201cThis is a rare event, and while it is the first detected case of H5 in a person in B.C. or in Canada, there have been a small number of human cases in the U.S. and elsewhere, which is why we are conducting a thorough investigation to fully understand the source of exposure here in B.C,\u201d said Henry.", + "rank": 10, + "retrieved_at": "2026-07-14T23:34:23.052522+00:00", + "published_date": "2024-11-10T14:43:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.7315068493150685, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.42467242406194167, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ce18072fd23f469395bc2dea2ffc46e3", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "domain": "cidrap.umn.edu", + "title": "USDA reports reveal biosecurity risks at H5N1-affected dairy farms - University of Minnesota Twin Cities", + "snippet": "In other H5N1 developments: Related news USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Yesterday, the Iowa Department of Agriculture and Land Stewardship reported the state's third outbreak in a dairy herd, which affected a second location in Sioux County. Updates on human investigations, vaccine production Responding to questions about Michigan's second case-patient in a dairy worker, who, unlike the other previous patients, had respiratory symptoms, Nirav Shah, JD, MD, principal deputy director for the Centers for Disease Control and Prevention (CDC), said the polymerase chain reaction cycle threshold\u00a0 (Ct) value for the patient's sample was high, suggesting a lower amount of viral RNA in the sample. Main navigation USDA reports reveal biosecurity risks at H5N1-affected dairy farms Naked King/iStock Shared equipment and shared personnel working on multiple dairy farms are some of the main risk factors for ongoing spread of highly pathogenic H5N1 avian flu in dairy cows, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) said today in a pair of new epidemiologic reports. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. One of the reports is an overview based on the results of questionnaires from affected dairy herds, and the other is a deep dive into the dairy cow and poultry outbreaks in Michigan, the state hit hardest by outbreaks in dairy cows, which now number at least 94. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:34:24.035991+00:00", + "published_date": "2024-06-13T20:33:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.32054794520547947, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4172721858248957, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ad2a5d5a149342b1861965e33252e9e0", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "canonical_url": "https://latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "domain": "latimes.com", + "title": "H5N1 bird flu infects five more humans in California, and one in Oregon - Los Angeles Times", + "snippet": "H5N1 bird flu infects six more humans in California, Oregon - Los Angeles Times H5N1 bird flu infects five more humans in California, and one in Oregon Health officials have announced six more H5N1 bird flu infections in humans: five in California and the first known case in Oregon. Five new human cases of H5N1 bird flu have been detected in California. As H5N1 bird flu spreads among California dairy herds and southward-migrating birds, health officials announced Friday that six more human cases of infection: five in California and one in Oregon \u2014 the state\u2019s first. Cases of H5N1 bird flu in U.S. dairy and poultry workers have largely been mild. Public health officials maintain the risk of H5N1 bird flu infection remains low.", + "rank": 7, + "retrieved_at": "2026-07-14T23:34:23.052458+00:00", + "published_date": "2024-11-16T01:21:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.747945205479452, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4131796137156471, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "711e91ec9c4d4a5d93bbefb3dd302a2b", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:34:22.301126+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3178082191780822, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4092963498681188, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "e630f1206dab4679beffa771f46649c5", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://time.com/6976402/bird-flu-next-pandemic-testing/", + "canonical_url": "https://time.com/6976402/bird-flu-next-pandemic-testing", + "domain": "time.com", + "title": "How to Stop Bird Flu from Becoming the Next Pandemic | TIME - TIME", + "snippet": "A layered testing strategy that combines waste or wastewater surveillance on the farms, routine testing of pooled milk from the cows, and active surveillance testing of animals and humans\u2014including those without symptoms\u2014is our best hope of stopping the virus from spreading. We find ourselves in a situation reminiscent of early 2020, when the U.S. stood on the brink of the COVID-19 pandemic and hesitated to take decisive action, restricting testing to only those with epidemiological links to China. A complicating factor is that responsibility for outbreak control is divided between three federal agencies: the U.S. Department of Agriculture (USDA) for livestock, the U.S. Food and Drug Administration (FDA) for food safety, and the CDC for human health and surveillance. Though the risk of an H5N1 pandemic may currently be low, the consequences of inaction could be catastrophic, and the benefits of proactive testing far outweigh the short-term costs. The U.S. Centers for Disease Control and Prevention (CDC) maintains that as of now, the risk to the general public from H5N1 remains low.", + "rank": 9, + "retrieved_at": "2026-07-14T23:34:25.994385+00:00", + "published_date": "2024-05-09T18:21:32+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2246575342465753, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.39521937661306333, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "f9af4bae123a4364af6690c8a46a4dee", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "canonical_url": "https://aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "domain": "aol.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - AOL", + "snippet": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. The report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk. Taken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. AOL Where to shop today's best deals: Kate Spade, Amazon, Walmart and more ----------------------------------------------------------------------", + "rank": 6, + "retrieved_at": "2026-07-14T23:34:22.301059+00:00", + "published_date": "2025-01-04T02:31:46+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8821917808219178, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3884365693865397, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "3ea41e12fb0d4d42869ba4d030fa9b98", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 4, + "retrieved_at": "2026-07-14T23:34:23.052385+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8575342465753425, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37890559857057776, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "215d350bfd78441fb1cc16bf7d3ee819", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.yahoo.com/news/america-first-severe-case-bird-172433528.html", + "canonical_url": "https://yahoo.com/news/america-first-severe-case-bird-172433528.html", + "domain": "yahoo.com", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana - Yahoo! Voices", + "snippet": "There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 4, + "retrieved_at": "2026-07-14T23:34:22.300921+00:00", + "published_date": "2024-12-18T17:24:33+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3767138177486599, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "44f42c16d8cf4d0bac80834aa7294fea", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-05-15/avian-flu-raw-milk-birds-cows", + "canonical_url": "https://latimes.com/environment/story/2024-05-15/avian-flu-raw-milk-birds-cows", + "domain": "latimes.com", + "title": "Avian flu, cows, and raw milk concerns: Your questions answered - Los Angeles Times", + "snippet": "May 13, 2024 More to Read Experts blast CDC over failure to test sewage for signs of H5N1 bird flu virus May 10, 2024 Federal government \u2018believes\u2019 virus found in grocery store milk is safe for consumption April 24, 2024 Avian flu outbreak raises a disturbing question: Is our food system built on poop? April 18, 2024 Follow Us Susanne Rust is an award-winning investigative reporter specializing in environmental issues. Climate & Environment A rare songbird\u2019s epic journey from the edge of extinction back to the L.A. River Opinion Opinion: Florida just picked the wrong kind of meat to ban Subscribe for unlimited accessSite Map Follow Us MORE FROM THE L.A. TIMES More From the Los Angeles Times Climate & Environment Wildfire weather is increasing in California and much of the U.S., report finds California Climate change is central to both Pope Francis and Newsom. However, there have been a few cases in which it appears the virus may have spread between mammals, including on European fur farms, on a few South American beaches where elephant seals came to roost, and now among dairy cattle in the United States. Climate & Environment Despite H5N1 bird flu outbreaks in dairy cattle, raw milk enthusiasts are uncowed Despite warnings of H5N1 bird flu outbreaks among dairy cattle, raw milk enthusiasts say they will continue to drink unpasteurized milk. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:34:24.036526+00:00", + "published_date": "2024-05-15T10:00:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2410958904109589, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3756313281715307, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "b53732cf30f14850ad34694c428ad544", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 6, + "retrieved_at": "2026-07-14T23:34:25.149726+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9917808219178083, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.36026503871352, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "79dc50f163764c8e8584d18ff5ac4dfd", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 9, + "retrieved_at": "2026-07-14T23:34:25.149894+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35615445701806636, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "39deb0da31d94c1394d4e1166bd24448", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 10, + "retrieved_at": "2026-07-14T23:34:22.301310+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35421381774865995, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "8a961e26721c4b1a9001f94a92f095ba", + "question_id": "q1", + "query_id": "c814edd8ebf0412eb7909440be17dd16", + "engine": "tavily", + "url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california/", + "canonical_url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california", + "domain": "nypost.com", + "title": "Human bird flu cases grow with 2 more confirmed in California - New York Post", + "snippet": "U.S. and California health officials confirmed two new cases of H5N1\u00a0bird flu\u00a0in dairy farm workers in the state on Friday, bringing the total of infected dairy workers in that state to six, and the total of human cases nationwide this year to 20. Health officials in the U.S. and California confirmed two more cases of H5N1 bird flu in dairy farm workers in the state on Friday. Six dairy workers in California have now contracted the virus, and the total number of human cases of bird flu nationwide is now at 20. California health officials said they expect additional cases to be identified among individuals who have regular contact with infected dairy cattle.", + "rank": 5, + "retrieved_at": "2026-07-14T23:34:23.052421+00:00", + "published_date": "2024-10-12T01:22:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6520547945205479, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35085765336509833, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "684ad5fdfae840c0b28f1c28f0a4f735", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/hhs-advances-plan-produce-48-million-h5n1-vaccine-doses", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/hhs-advances-plan-produce-48-million-h5n1-vaccine-doses", + "domain": "cidrap.umn.edu", + "title": "HHS advances plan to produce 4.8 million H5N1 vaccine doses - University of Minnesota Twin Cities", + "snippet": "Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation HHS advances plan to produce 4.8 million H5N1 vaccine doses Response (ASPR) at the US Department of Health and Human Services (HHS) said officials are moving forward with a plan to produce 4.8 million doses of H5N1 avian flu vaccine for pandemic preparedness. \" Surveillance study describes incidence of multidrug-resistant infections in US children A surveillance\u00a0study found that carbapenem-resistant Enterobacterales (CRE) infections occur less frequently than extended-spectrum beta-lactamase\u2013producing Enterobacterales (ESBL-E) infections in US children, researchers reported today in Emerging Infectious Diseases. HHS advances plan to produce 4.8 million H5N1 vaccine doses Officials have identified a fill-and-finish opening on a production line at a vaccine company partner and said the activity won't disrupt the supply of seasonal flu vaccine. Led by researchers with the Centers for Disease Control and Prevention's Emerging Infections Program (EIP), the surveillance study analyzed CRE incidence in children in 10 states from 2016 through 2020 and ESBL-E incidence in children in six states from 2019 through 2020.", + "rank": 6, + "retrieved_at": "2026-07-14T23:34:25.994206+00:00", + "published_date": "2024-05-22T21:32:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.26027397260273977, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3471143537820131, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "9877c1a17f8246fdac2788fc0c34713b", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.researchprofessionalnews.com/rr-news-africa-south-2024-6-south-africa-steps-up-bird-flu-monitoring-in-humans/", + "canonical_url": "https://researchprofessionalnews.com/rr-news-africa-south-2024-6-south-africa-steps-up-bird-flu-monitoring-in-humans", + "domain": "researchprofessionalnews.com", + "title": "South Africa steps up bird flu monitoring in humans - Research Professional News", + "snippet": "Research Professional | Pivot-RP South Africa steps up bird flu monitoring in humans Image:\u00a0AMISOM Public Information, via Flickr Move comes as global concern grows in the wake of infections in US dairy workers South Africa is stepping up efforts to detect avian influenza in humans following growing global concern about spillover infections from animals. Pandemic potential Concerns are growing globally around avian influenza, with three dairy workers in the US having caught the virus from dairy cattle since April this year. \u201cThis surveillance system will be set up in collaboration with veterinary and animal health colleagues,\u201d Sibongile Walaza, head of epidemiology in the institute\u2019s Centre for Respiratory Diseases and Meningitis, told Research Professional News. No time for complacency Last year, an outbreak of H5N1 in South African poultry farms decimated the country\u2019s poultry stocks and disrupted egg production in the country. The stepped-up surveillance system due to be operational later this year will document human cases associated with outbreaks in poultry, wild birds or other animals, the country\u2019s National Institute for Communicable Diseases has confirmed. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:34:25.994446+00:00", + "published_date": "2024-06-13T07:06:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.32054794520547947, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.34183740321620015, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "183d2a2f1f7042ac92b3afd856365b6f", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "canonical_url": "https://newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "domain": "newsweek.com", + "title": "Bird Flu Map Update as US Cases Rise to 14 - Newsweek", + "snippet": "In addition to being the first case not linked to contact with a sick animal, Missouri officials said that the case was the first detected using the state's flu surveillance system, rather than protocol specifically tailored to detect H5N1 cases related to the recent outbreak in livestock like dairy cows and poultry. The latest infection makes Missouri the fourth U.S. state with a human case this year. The following map created by Newsweek shows that all of this year's human H5N1 cases have been limited to Colorado, Texas, Michigan and Missouri: No cases of human-to-human transmission have ever been detected in the U.S. In humans, bird flu can range in severity from no symptoms to mild symptoms like eye infections or upper respiratory illness.", + "rank": 5, + "retrieved_at": "2026-07-14T23:34:22.300991+00:00", + "published_date": "2024-09-07T03:17:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5561643835616439, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3412686122692079, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "332df9f3577943829cf0a0dbde50703d", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "canonical_url": "https://biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "domain": "biospace.com", + "title": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace", + "snippet": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC H5N1 bird flu, also known as avian influenza A (H5N1), continues to spread among wild birds worldwide and is causing outbreaks in poultry and dairy cows in the U.S., with several recent cases identified in humans who work with these animals.1 Illness from the virus in the U.S. has been mild but severe illness in other countries has been associated with this virus.2 To prepare for if the current outbreak worsens, Hologic will work with the CDC to develop reagents that may be used for H5N1 testing.", + "rank": 8, + "retrieved_at": "2026-07-14T23:34:24.036376+00:00", + "published_date": "2024-12-18T14:15:15+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3383986003573556, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "958098aada354dde860ec4c1444fc0da", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:34:22.300846+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29315068493150687, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3349672424061942, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "78b7e65b372c47c3bcdf6777b1bc66c3", + "question_id": "q1", + "query_id": "d4e3ef10aada49268c751dc0ff6b1dcd", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 7, + "retrieved_at": "2026-07-14T23:34:25.149844+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3068493150684931, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3273308942397686, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "77e0965346684217b639da5b6185b583", + "question_id": "q1", + "query_id": "d18c6950ffbf453ba3d08537237e548e", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:34:22.301246+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3167500496327179, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "46ded73a225f4705b98480d34d8e9d05", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "http://www.sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "canonical_url": "http://sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "domain": "sfchronicle.com", + "title": "California egg shortage drives prices to nearly $9 per dozen - San Francisco Chronicle", + "snippet": "California egg prices jump 70% due to bird flu outbreaks A sign posted in store coolers at Whole Foods on Ocean Avenue in San Francisco reads, \u201cFor now, we\u2019re limiting purchases to 3 cartons per customer.\u201d Egg prices have spiked 70% amid a nationwide dairy shortage spurred by the outbreak of H5N1 avian flu, commonly known as bird flu. The price hike, highlighted in the U.S. Department of Agriculture\u2019s December egg markets report, owes largely to a series of highly pathogenic avian influenza outbreaks that have decimated the state\u2019s poultry flocks. With the U.S. egg-laying flock expected to dip below 300 million hens \u2014 its lowest point since the 2022 bird flu crisis \u2014 the nation\u2019s egg production is unlikely to return to normal levels until mid-2025, assuming no additional outbreaks occur.", + "rank": 5, + "retrieved_at": "2026-07-14T23:34:24.036148+00:00", + "published_date": "2024-12-31T19:22:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8712328767123287, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3140798094103633, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "b04df819e6fe41248dd14ca2ae8bfa6a", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "canonical_url": "https://feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "domain": "feedstuffs.com", + "title": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing - Feedstuffs", + "snippet": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing U.S. dairy farmers are remaining resilient in the face of H5N1 influenza outbreaks while advancing in policy areas including nutrition and milk pricing, said NMPF Chairman Randy Mooney at the organization\u2019s annual meeting held in Phoenix Oct. 21-23. Underpinning the entire industry is USDA\u2019s plan for Federal Milk Marketing Order modernization, which is likely to resemble a proposal released in July that incorporated key NMPF principles and would be voted on by dairy farmers early next year. \u201cDairy farmers and their cooperatives have developed and embraced a robust biosecurity program through the National Dairy FARM Program,\u201d NMPF\u2019s Emily Yeiser Stepp said.", + "rank": 4, + "retrieved_at": "2026-07-14T23:34:24.036071+00:00", + "published_date": "2024-10-24T15:29:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6849315068493151, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.30294967242406196, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "1530a4c126144d0a89d016dec3bf0413", + "question_id": "q1", + "query_id": "e4b2a02ef9134197906257cb5cf5973a", + "engine": "tavily", + "url": "https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "canonical_url": "https://news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "domain": "news-medical.net", + "title": "H5N1 bird flu is mutating fast and jumping to mammals - could the next pandemic be here? - News-Medical.Net", + "snippet": "Such rapid viral transmission started after the emergence of a new genotype of H5N1 viruses belonging to clade 2.3.4.4b, which infected wild birds from Europe to Africa, North America, South America, and the Antarctic. The article provides information on the acquisition of key adaptive mutations that enabled 2.3.4.4b H5N1 viruses to sustain mammal-to-mammal transmission. The authors have collected this information from three real-world settings: the 2022-2023 H5N1 outbreaks on European fur farms, the 2023 South American marine mammal-adapted virus, and the 2024 US dairy cattle outbreak. Genetic sequencing of H5N1 viruses from South American marine mammals identified the same known mammalian adaptations (PB2 D701N and Q591K) and other distinctive mutations absent in birds, supporting mammal-to-mammal transmission. Retrieved on September 25, 2024 from https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. . https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. News-Medical, viewed 25 September 2024, https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx.", + "rank": 7, + "retrieved_at": "2026-07-14T23:34:24.036304+00:00", + "published_date": "2024-09-26T00:29:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6082191780821917, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.27920701097592104, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "eea6869277e84ec7b4f98157952c4167", + "question_id": "q1", + "query_id": "97983baf224f446d973d95a905b9dc96", + "engine": "tavily", + "url": "https://www.agriculture.com/bird-flu-virus-susceptible-to-antiviral-meds-used-against-seasonal-flu-says-cdc-8637409", + "canonical_url": "https://agriculture.com/bird-flu-virus-susceptible-to-antiviral-meds-used-against-seasonal-flu-says-cdc-8637409", + "domain": "agriculture.com", + "title": "Bird flu virus susceptible to antiviral meds used against seasonal flu, says CDC - Successful Farming", + "snippet": "The USDA said on Monday the virus has been confirmed in 33 dairy herds in eight states since it was first identified on March 25. A dairy worker in Texas apparently contracted bird flu on the job and was treated for conjunctivitis early this month. Bird flu virus susceptible to antiviral meds used against seasonal flu, says CDC The USDA said on Monday the virus has been confirmed in 33 dairy herds in eight states since it was first identified on March 25. Testing has confirmed that antiviral medications used against the seasonal flu would be effective against the H5N1 bird flu virus that also infects dairy cattle, said the\u00a0Centers for Disease Control. Authorities say risk of H5N1 to the public is low, and surveillance would continue to see if the virus was evolving to spread more easily. Wild birds are believed to spread HPAI, so animal welfare officials urge farmers to adopt strong biosecurity measures, such as keeping wild birds away from their stock, limiting access by outsiders to their farms, and using foot baths to sanitize boots before entering barns. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:34:25.994326+00:00", + "published_date": "2024-04-23T13:20:07+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.1808219178082192, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.27291914830256103, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/documents.json b/data/runs_ab_no_history/q1/traj_20250220/documents.json new file mode 100644 index 0000000..95da246 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/documents.json @@ -0,0 +1,714 @@ +[ + { + "id": "doc-2c4732103e2841a29ae0648d04236822", + "result_id": "2c4732103e2841a29ae0648d04236822", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:41:35.318979+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-2c4732103e2841a29ae0648d04236822-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-2c4732103e2841a29ae0648d04236822-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-2c4732103e2841a29ae0648d04236822-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-2c4732103e2841a29ae0648d04236822-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-bf1afd7ace33421197ab5d10917dff45", + "result_id": "bf1afd7ace33421197ab5d10917dff45", + "source_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:41:50.348563+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-19T04:51:33+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-bf1afd7ace33421197ab5d10917dff45-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-8f5beb0fcece49c98df46e30216797c3", + "result_id": "8f5beb0fcece49c98df46e30216797c3", + "source_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:42:02.456261+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-19T00:40:48+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-8f5beb0fcece49c98df46e30216797c3-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-8f5beb0fcece49c98df46e30216797c3-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-8f5beb0fcece49c98df46e30216797c3-c2", + "chunk_index": 2, + "text": "\u2022 12,064 wild birds detected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 162,586,638 poultry affected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 972 dairy herds affected as of 2/18/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/18/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-b200ecc1db5c4434851ef7cdca866e0a", + "result_id": "b200ecc1db5c4434851ef7cdca866e0a", + "source_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:42:10.411536+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-07T11:32:27+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-b200ecc1db5c4434851ef7cdca866e0a-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b200ecc1db5c4434851ef7cdca866e0a-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b200ecc1db5c4434851ef7cdca866e0a-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b200ecc1db5c4434851ef7cdca866e0a-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-b200ecc1db5c4434851ef7cdca866e0a-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "result_id": "ca39d86abd714a8b87e57f67704ae75a", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:42:11.622504+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e", + "result_id": "adab909dde1f4b70bdc1ce79da0b0b2e", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "fetched_at": "2026-07-14T23:42:59.762141+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "title": "Bird flu: First death from H5N1 strain reported in US", + "published_date": "2025-01-07T16:25:05+00:00", + "language": "en", + "page_count": null, + "char_count": 2872, + "token_count": 606, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e-c0", + "chunk_index": 0, + "text": "The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred.\nThe patient had been taken to hospital after contracting a major strain of bird flu, known as H5N1.\nLouisiana health department said they were over the age of 65, and had other underlying health conditions.\nIt said their public health investigation had not found evidence of person-to-person transmission, or any other cases.\nBird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. In very rare cases, it can also infect humans.\nThe state's health department added the person had contracted bird flu after being exposed to a personal flock of birds and wild birds.\n\"While the current public health risk for the general public remains low, people who work with birds, poultry or cows, or have recreational exposure to them, are at higher risk,\" it said.\nThere have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC).", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US", + "page_number": null, + "table_data": null, + "token_count": 228, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e-c1", + "chunk_index": 1, + "text": "Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Bird migration has resulted in outbreaks of the avian flu in domestic and wild birds.\nThe H5N1 virus is the major strain circulating among wild birds worldwide, and emerged in China in the late 1990s.\nAlthough infection of humans is very rare, it occurs via transmission from birds.\nAlmost all cases of infection in people have been associated with close contact to infected dead or live birds, or contaminated environments.\nSince 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.\nThere has been no sustained human-to-human transmission.\nLast month, the CDC said the Louisiana patient had been infected with the D1.1variant of the virus, which has recently been detected in North America.\nA 13-year-old girl in Canada was taken to hospital with the same D1.1 variant in November 2024, according to a paper published in The New England Journal of Medicine.\nIt is different to the B3.13 variant, which - during the past year - has been on the rise among cows in the US.\nIn September 2024, a person in Missouri recovered from bird flu after being treated in hospital.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > What is bird flu?", + "page_number": null, + "table_data": null, + "token_count": 263, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e-c2", + "chunk_index": 2, + "text": "According to the WHO, symptoms of a H5N1 infection include a cough, sore throat, fever (often over 38C), muscle aches and general feelings of malaise.\nPeople with the virus may also display other non-respiratory symptoms such as conjunctivitis.\nThe WHO added that H5N1 has also been detected in people without symptoms who had contact with infected animals or their environments.\nWhile the risk to humans is low, the constantly evolving virus is monitored for all changes, including the potential to become easily transmissible from person to person.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > Bird flu symptoms", + "page_number": null, + "table_data": null, + "token_count": 115, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T22:05:39+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-5cd3a0baec254366ad4006888d6ea4f3", + "result_id": "5cd3a0baec254366ad4006888d6ea4f3", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:43:22.244605+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-20ed0309167f4011ab343c6293c859ea", + "result_id": "20ed0309167f4011ab343c6293c859ea", + "source_url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "domain": "edition.cnn.com", + "fetched_at": "2026-07-14T23:43:26.432995+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu | CNN", + "published_date": "2024-12-31T00:00:00", + "language": "en", + "page_count": null, + "char_count": 5981, + "token_count": 1198, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-20ed0309167f4011ab343c6293c859ea-c0", + "chunk_index": 0, + "text": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. But the case of an ill Canadian teen stands out because of its severity and because the source of exposure remains a mystery.\nWith the number of cases continuing to grow, leaders from the National Institutes of Health are calling for more action to tackle the bird flu outbreak.\nThe teenager, who was hospitalized with H5N1 infection in November, became critically ill and spent almost two weeks hooked up to machines that took over for her failing heart, lungs and kidneys, according to a report published Tuesday in the New England Journal of Medicine.\nThe 13-year-old had asthma and obesity but was otherwise in good health before catching H5N1. She recovered after aggressive treatment with a combination of three antiviral drugs, according to the report.\n\u201cShe had multiorgan failure and was horribly ill,\u201d said Dr. Megan Ranney, an emergency medicine physician and dean of the Yale School of Public Health, who was not involved with the girl\u2019s care.\nThe teen was treated with extracorporeal membrane oxygenation, or ECMO, in which machines take over the work of the heart and lungs to give the body a chance to recover. She also had continuous dialysis to help remove toxins from her blood because her kidneys weren\u2019t working, as well as plasma exchange, in which machines separate the clear part of the blood from blood cells so harmful substances can be removed.\n\u201cWere those extraordinary treatment modalities not available, she likely would not have lived,\u201d Ranney said.\nHealth officials in British Columbia closed their investigation into the case late last month after being unable to find the virus in any of the household pets, nearby animals, or soil or water samples. Close monitoring of people who were around the teen determined that no one else caught the virus from her. At the time, it wasn\u2019t clear whether she had recovered.\nThe new report on the teen\u2019s case \u201cclearly shows that a child who was otherwise generally healthy became sick and then got very, very ill in a matter of days. This is a very worrisome outcome that we should be much more concerned about happening with other infections,\u201d said Dr. Jennifer Nuzzo, who directs the Pandemic Center at Brown University. She was not involved in the case.\nThe teen was infected with a newer variant of the H5N1 virus, D1.1, which is carried by wild birds. This variant has played a role in some infections of poultry workers in Washington, which were mild, and a recent human infection in Louisiana, which was severe.\nIn both severe infections \u2013 the teen\u2019s and the case in Louisiana \u2013 the virus has shown changes that mean it might be adapting to humans, a finding that has put infectious disease experts on high alert since it increases the possibility of human-to-human spread.\n\u201cFor this reason, we should be much more aggressive in conducting environmental surveillance for H5N1 to track the virus and to prevent people from becoming infected,\u201d Nuzzo said.\nThe report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk.\nEye redness, or conjunctivitis, was the most common symptom in these farmworker infections, showing up in 42 of 46 cases (93%). Almost half of the workers had fevers, and more than a third reported respiratory symptoms. The average duration of illness was about four days.\nThe article also acknowledges that the official number of cases is an undercount. Although the CDC says there have been 66 confirmed cases in the US this year, recent testing on dairy farms found that 7% of workers had evidence of recent H5N1 infection in their blood.\nIn a commentary that accompanied the two studies, Dr. Jeanne Marrazzo, who directs the National Institute of Allergy and Infectious Diseases, says the mutations found in the virus isolated from the Canadian teen highlight an \u201curgent need for vigilant surveillance and assessment of the threat of human-to-human transmission.\u201d\nSurveillance has been hampered because of incomplete reporting of animal infections, she wrote. The US Department of Agriculture hasn\u2019t been submitting critical details like the exact dates when animals have gotten sick or precise locations that help scientists track the evolution of a virus over time.\nTaken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. There have also been an increasing number of people with respiratory symptoms, like breathing problems or coughing, linked to their infections.\nAlthough the overall number of human infections related to H5N1 has been low, the continued drip, drip, drip of human and animal detections is not a good sign.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 995, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-20ed0309167f4011ab343c6293c859ea-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\n\u201cThis kind of repetitive, persistent opportunity for passage from one species to another, from one anatomic space to another, that\u2019s what that\u2019s what influenza thrives on to mutate,\u201d Marrazzo told CNN. \u201cThis virus doesn\u2019t miss a beat.\u201d\nShe and co-author Dr. Michael Ison, who is chief of the Respiratory Diseases Branch at NIAID, call for better cooperation between human and animal disease investigators, complete reporting of data from animal infections so scientists can better track how the virus is spreading, development of countermeasures like vaccines and antiviral medication, and more precautions to prevent infection, such as increased use of recommended personal protective equipment and education about the risks of being around sick animals.\n\u201cThe risk is really going to come when this gets better at obviously infecting humans, and then we are faced with potential for human-to-human transmission,\u201d Marrazzo said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 203, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-11T14:24:01+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-a4e5988661f244a18ec5ca0a116df8af", + "result_id": "a4e5988661f244a18ec5ca0a116df8af", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "fetched_at": "2026-07-14T23:43:40.463612+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN", + "published_date": "2024-12-18T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4156, + "token_count": 821, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-a4e5988661f244a18ec5ca0a116df8af-c0", + "chunk_index": 0, + "text": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States.\nThe agency said Wednesday that the person was exposed to sick and dead birds in backyard flocks; this is the first US bird flu case linked to a backyard flock.\n\u201cIt is believed that the patient that was reported by Louisiana had exposure to sick or dead birds on their property. These are not commercial poultry, and there was no exposure to dairy cows or their related products,\u201d said Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC.\nFederal officials declined to answer questions about the patient\u2019s symptoms or their current condition. They instead referred all inquiries about the case to the Louisiana Department of Health, which is leading the investigation.\nAccording to state officials, the patient is experiencing severe respiratory illness related to H5N1 and is hospitalized in critical condition. The person is older than 65 and has underlying medical conditions that increased their risk of flu complications, the Louisiana Department of Health said in an email to CNN.\nThis virus, D1.1, is the same type found in recent human cases in Canada and Washington state and detected in wild birds and poultry in the United States. It\u2019s different from B3.13, the type detected in dairy cows, some poultry outbreaks and other cases in humans across the United States.\nThe CDC said it\u2019s working on additional genomic sequencing of samples from the patient, who is from southwestern Louisiana, and the investigation into the patient\u2019s exposure is still underway.\nBird flu has been linked with severe human illness and death in other countries, but no person-to-person spread has been detected.\n\u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement.\nIn California, Gov. Gavin Newsom declared a state of emergency Wednesday over the continued spread of H5N1 bird flu in that state.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 420, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-a4e5988661f244a18ec5ca0a116df8af-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\nNewsom said the measure was necessary because, despite intense efforts to contain it, the virus had spread beyond the Central Valley to four dairies in the southern part of the state.\n\u201cThis proclamation is a targeted action to ensure government agencies have the resources and flexibility they need to respond quickly to this outbreak,\u201d he said in a news release. \u201cWhile the risk to the public remains low, we will continue to take all necessary steps to prevent the spread of this virus.\u201d\nThe emergency declaration will give state agencies greater flexibility with staffing and free up more funding for the response.\nOf the 61 confirmed human cases of bird flu in the US this year, 34 have been in California. Nearly all of those have been in dairy farm workers, according to the CDC.\nThe Louisiana case shows that precautions should be taken by people with backyard chicken flocks, hunters and other bird enthusiasts, the CDC said.\n\u201cThe cases across the US are a constellation of spillovers,\u201d said Dr. Rebecca Christofferson, a virologist at Louisiana State University\u2019s School of Veterinary Medicine. Experts still don\u2019t understand exactly how these spillovers are happening and the specific factors that increase a person\u2019s risk.\n\u201cIt\u2019s just kind of a black box at the moment that a lot of people are trying to answer these questions on,\u201d Christofferson said.\nThe CDC says the best approach is to avoid exposure. Infected birds can shed viruses in their saliva, mucus and feces, and other animals may shed them in their respiratory secretions and bodily fluids, including unpasteurized milk from cows.\n\u201cPeople who work with or have recreational exposure to infected animals are at higher risk of infection, and it\u2019s extremely important that they follow CDC recommended precautions when around infected or potentially infected animals, a message that we will continue to magnify given recent cases,\u201d Daskalakis said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 401, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-09T23:57:07+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/filtered.json b/data/runs_ab_no_history/q1/traj_20250220/filtered.json new file mode 100644 index 0000000..abcfa70 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/filtered.json @@ -0,0 +1,235 @@ +[ + { + "result_id": "2c4732103e2841a29ae0648d04236822", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "bf1afd7ace33421197ab5d10917dff45", + "question_id": "q1", + "url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-19T04:51:33+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "8f5beb0fcece49c98df46e30216797c3", + "question_id": "q1", + "url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-19T00:40:48+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "b200ecc1db5c4434851ef7cdca866e0a", + "question_id": "q1", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "ca39d86abd714a8b87e57f67704ae75a", + "question_id": "q1", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "adab909dde1f4b70bdc1ce79da0b0b2e", + "question_id": "q1", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "relevance_score": 0.8, + "credibility_score": 0.9, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_data" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "5cd3a0baec254366ad4006888d6ea4f3", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.75, + "credibility_score": 0.9, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_data" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "20ed0309167f4011ab343c6293c859ea", + "question_id": "q1", + "url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "canonical_url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "domain": "edition.cnn.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - CNN International", + "snippet": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu | CNN CNN10 About CNN Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. She and co-author Dr. Michael Ison, who is chief of the Respiratory Diseases Branch at NIAID, call for better cooperation between human and animal disease investigators, complete reporting of data from animal infections so scientists can better track how the virus is spreading, development of countermeasures like vaccines and antiviral medication, and more precautions to prevent infection, such as increased use of recommended personal protective equipment and education about the risks of being around sick animals. CNN10 About CNN", + "published_date": "2024-12-31T22:12:00+00:00", + "file_type": null, + "relevance_score": 0.7, + "credibility_score": 0.9, + "final_score": 0.785, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_data" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "a4e5988661f244a18ec5ca0a116df8af", + "question_id": "q1", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "relevance_score": 0.65, + "credibility_score": 0.9, + "final_score": 0.775, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_data" + ], + "extraction_priority": 9, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/forecast.json b/data/runs_ab_no_history/q1/traj_20250220/forecast.json new file mode 100644 index 0000000..12a53fe --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/forecast.json @@ -0,0 +1,153 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9781017233253921, + "100-150": 0.020290419640909687, + "150-200": 0.0012341043083096267, + "200+": 0.0003737527253887142 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9781017233253921, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 0.020290419640909687, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 0.0012341043083096267, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 0.0003737527253887142, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.9, + 0.08, + 0.01, + 0.01 + ], + "ok": true, + "reference_class": "Past H5N1 outbreaks in the US and globally", + "base_rate": 0.05, + "drivers_up": [ + "The US has reported 67 cumulative cases since 2022, indicating some level of transmission.", + "Recent reports indicate new cases are still being detected." + ], + "drivers_down": [ + "The cumulative number of cases is still relatively low, at 67 cases since 2022, suggesting limited spread.", + "No evidence of large-scale outbreaks or exponential growth in case numbers.", + "Most cases are linked to commercial agriculture, which might be easier to contain." + ], + "why_might_be_wrong": "There might be under-reporting or delays in reporting new cases, especially close to the target date.", + "rationale": "The base rate for H5N1 transmission to humans is low, given historical data and current case numbers. Despite the recent cases in the US, the evidence does not indicate a rapid increase or large-scale outbreak. Most cases are tied to commercial agriculture, suggesting containment efforts may limit further spread. Given the current case count of 67 and the lack of evidence for accelerating transmission, it's reasonable to predict that the count will remain below 100 by February 28, 2025.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.7, + 0.2, + 0.08, + 0.02 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in cases, with 67 confirmed cases since 2022", + "High concentration of cases in states like California, indicating potential for further spread" + ], + "drivers_down": [ + "The historically low number of human cases of H5N1 globally since 2003", + "Limited human-to-human transmission observed, with most cases linked to agriculture" + ], + "why_might_be_wrong": "The forecast could be off due to potential underreporting or sudden changes in transmission dynamics.", + "rationale": "The base rate of H5N1 cases has been low historically. However, there has been a notable increase recently, with 67 cases reported in the US since 2022. The clustering of cases in specific states suggests some potential for further spread. Still, the lack of widespread human-to-human transmission and the linkage of many cases to agriculture suggest that an exponential increase is unlikely. Given the current case count of 67 and the limited time until the target date, the probability of reaching over 70 cases is moderate, but exceeding 100 cases seems unlikely.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.85, + 0.1, + 0.03, + 0.02 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in confirmed cases from December 2024 indicates ongoing transmission.", + "High concentration of cases in California suggests potential for localized outbreaks." + ], + "drivers_down": [ + "No evidence of widespread community transmission in the US.", + "Most cases linked to commercial agriculture, where mitigation measures can be applied." + ], + "why_might_be_wrong": "Unexpected outbreaks or changes in the virus's transmissibility could lead to a higher case count than forecasted.", + "rationale": "As of January 2025, the cumulative number of confirmed H5N1 cases in the US is 9. The recent trend shows a significant rise from earlier months, suggesting the possibility of more cases. However, the base rate of H5N1 cases historically remains low in the US. Given the current evidence and typical patterns of H5N1 outbreaks, the probability of reaching above 100 cases by late February 2025 is low. Therefore, the most likely outcome is the 70-100 range.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-febdb43b6415", + "ins-517fcad5261d", + "ins-e470ce2cc2e3", + "ins-f14b41f0c964", + "ins-6ebfbebe41e9", + "ins-ae60784a837e", + "ins-e46c87abcc12", + "ins-6a03580ff1d4", + "ins-6d15fa32c492", + "ins-5719fdb51002", + "ins-b91740d5241b", + "ins-d71f805fc1b3", + "ins-6a03a30ebbef", + "ins-0603684c784c" + ], + "budget_summary": { + "total_input_tokens": 5994, + "total_output_tokens": 737, + "total_tokens": 6731, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 5994, + "output_tokens": 737, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/insight.json b/data/runs_ab_no_history/q1/traj_20250220/insight.json new file mode 100644 index 0000000..364e1e2 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/insight.json @@ -0,0 +1,445 @@ +{ + "records": [ + { + "id": "ins-0603684c784c", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Total confirmed cases of A(H5) virus in the US since 2022.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:49.000306+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c3", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-b91740d5241b", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 66.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed H5N1 cases in the US since 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:53.002178+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e", + "chunk_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e-c0", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "There have been 66 confirmed cases of H5N1 bird flu in the US since 2024" + }, + { + "document_id": "doc-20ed0309167f4011ab343c6293c859ea", + "chunk_id": "doc-20ed0309167f4011ab343c6293c859ea-c0", + "source_url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "quote": "the CDC says there have been 66 confirmed cases in the US this year" + } + ] + }, + { + "id": "ins-ae60784a837e", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human infections in the U.S. for the year, with a significant number in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:55.566145+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5cd3a0baec254366ad4006888d6ea4f3", + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-6a03580ff1d4", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "first known case of infection in the U.S. to have links to sick and dead birds in backyard flocks", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:56.393499+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5cd3a0baec254366ad4006888d6ea4f3", + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "the first known case of infection in the U.S. to have those origins." + } + ] + }, + { + "id": "ins-6d15fa32c492", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 60.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "includes 60 other cases linked to commercial agriculture", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:56.393568+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5cd3a0baec254366ad4006888d6ea4f3", + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the 60 other cases, 58 were linked to commercial agriculture" + } + ] + }, + { + "id": "ins-d71f805fc1b3", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed human cases of bird flu in the US this year, with 34 in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:44:00.052844+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a4e5988661f244a18ec5ca0a116df8af", + "chunk_id": "doc-a4e5988661f244a18ec5ca0a116df8af-c1", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "Of the 61 confirmed human cases of bird flu in the US this year, 34 have been in California." + } + ] + }, + { + "id": "ins-5719fdb51002", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of infection with influenza A(H5) reported from Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:51.177209+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-f14b41f0c964", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-20T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of infection with influenza A(H5) reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:51.177581+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-e470ce2cc2e3", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of infection with influenza A(H5) reported from California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:51.177902+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-febdb43b6415", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of A(H5N1) infection was reported to WHO from Cambodia.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:49.857740+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c1", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "one laboratory-confirmed human case of A(H5N1) infection was reported to WHO from Cambodia." + } + ] + }, + { + "id": "ins-517fcad5261d", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Influenza A(H5) virus has been detected in nine humans in the United States.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:49.858082+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-ca39d86abd714a8b87e57f67704ae75a", + "chunk_id": "doc-ca39d86abd714a8b87e57f67704ae75a-c1", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-6a03a30ebbef", + "question_id": "q1", + "event_type": "other", + "confidence": 0.5, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 954.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2003-01-01T00:00:00", + "event_date_precision": "day", + "summary": "Since 2003, the WHO has counted 954 confirmed human cases of bird flu, of which about half have died.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:53.242646+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e", + "chunk_id": "doc-adab909dde1f4b70bdc1ce79da0b0b2e-c1", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died." + } + ] + }, + { + "id": "ins-6ebfbebe41e9", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:43:55.453894+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-5cd3a0baec254366ad4006888d6ea4f3", + "chunk_id": "doc-5cd3a0baec254366ad4006888d6ea4f3-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + }, + { + "id": "ins-e46c87abcc12", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Louisiana", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "active", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "First severe case of H5N1 bird flu in the US, linked to backyard flock, patient hospitalized in critical condition.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:44:00.265744+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a4e5988661f244a18ec5ca0a116df8af", + "chunk_id": "doc-a4e5988661f244a18ec5ca0a116df8af-c0", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States." + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 82415, + "total_output_tokens": 1975, + "total_tokens": 84390, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 82415, + "output_tokens": 1975, + "calls": 37 + } + } + }, + "documents_processed": 9, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/manifest.json b/data/runs_ab_no_history/q1/traj_20250220/manifest.json new file mode 100644 index 0000000..1b5781a --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250220", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:39:39.084293+00:00", + "completed_at": "2026-07-14T23:44:14.675046+00:00", + "stage_timings": { + "search": 88.572, + "filter": 5.64, + "extract": 148.43, + "insight": 18.541, + "forecast": 14.397 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": true + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-bf1afd7ace33421197ab5d10917dff45", + "result_id": "bf1afd7ace33421197ab5d10917dff45", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.0 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 85142, + "output_tokens": 2468, + "calls": 40 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 5994, + "output_tokens": 737, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 98, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 2337, + "output_tokens": 395, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 82415, + "output_tokens": 1975, + "calls": 37 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 5994, + "output_tokens": 737, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000117, + "filter": 0.000588, + "insight": 0.013547, + "forecast": 0.022355 + }, + "estimated_cost_usd": 0.036607 +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/question.json b/data/runs_ab_no_history/q1/traj_20250220/question.json new file mode 100644 index 0000000..cbc3445 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-20T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250220/search.json b/data/runs_ab_no_history/q1/traj_20250220/search.json new file mode 100644 index 0000000..30f458f --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250220/search.json @@ -0,0 +1,1150 @@ +[ + { + "id": "2c4732103e2841a29ae0648d04236822", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:39:41.580161+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9726027397260274, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6842167957117332, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "bf1afd7ace33421197ab5d10917dff45", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:39:41.580161+00:00", + "published_date": "2025-02-19T04:51:33+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6086956521739131, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "8f5beb0fcece49c98df46e30216797c3", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:39:41.580161+00:00", + "published_date": "2025-02-19T00:40:48+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5695652173913044, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "b200ecc1db5c4434851ef7cdca866e0a", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:39:41.580161+00:00", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9671232876712329, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5662775461584276, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "ca39d86abd714a8b87e57f67704ae75a", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:39:41.580161+00:00", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9616438356164384, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5657296009529482, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "adab909dde1f4b70bdc1ce79da0b0b2e", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "rank": 4, + "retrieved_at": "2026-07-14T23:41:06.616826+00:00", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8821917808219178, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5600670041691482, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "20ed0309167f4011ab343c6293c859ea", + "question_id": "q1", + "query_id": "4f72f1fc6562429a88cced1538562c8a", + "engine": "tavily", + "url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "canonical_url": "https://edition.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "domain": "edition.cnn.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - CNN International", + "snippet": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu | CNN CNN10 About CNN Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. She and co-author Dr. Michael Ison, who is chief of the Respiratory Diseases Branch at NIAID, call for better cooperation between human and animal disease investigators, complete reporting of data from animal infections so scientists can better track how the virus is spreading, development of countermeasures like vaccines and antiviral medication, and more precautions to prevent infection, such as increased use of recommended personal protective equipment and education about the risks of being around sick animals. CNN10 About CNN", + "rank": 2, + "retrieved_at": "2026-07-14T23:41:04.524948+00:00", + "published_date": "2024-12-31T22:12:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5565187611673615, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "5cd3a0baec254366ad4006888d6ea4f3", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:41:02.409127+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5532310899344848, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "42c26022cffd427f93bc939eefe8d9e0", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 1, + "retrieved_at": "2026-07-14T23:41:05.651858+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3232876712328767, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5371113758189399, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "9802d43d2f934741ba4f427cbaf9df63", + "question_id": "q1", + "query_id": "4f72f1fc6562429a88cced1538562c8a", + "engine": "tavily", + "url": "https://www.cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "canonical_url": "https://cnn.com/2024/12/31/health/human-h5n1-bird-flu-cases/index.html", + "domain": "cnn.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - CNN", + "snippet": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu | CNN CNN10 About CNN Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. She and co-author Dr. Michael Ison, who is chief of the Respiratory Diseases Branch at NIAID, call for better cooperation between human and animal disease investigators, complete reporting of data from animal infections so scientists can better track how the virus is spreading, development of countermeasures like vaccines and antiviral medication, and more precautions to prevent infection, such as increased use of recommended personal protective equipment and education about the risks of being around sick animals. CNN10 About CNN", + "rank": 3, + "retrieved_at": "2026-07-14T23:41:04.525182+00:00", + "published_date": "2024-12-31T22:12:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5315187611673616, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "46d0103c04fe4376899143a089c31a2e", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:41:02.409058+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8821917808219178, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5134365693865397, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "30aeb0e499654cf8879c83fa5a8c137c", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 2, + "retrieved_at": "2026-07-14T23:41:05.651950+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2465753424657534, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.49357057772483626, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "952e2ad8be35496c82676c6fc0f9e87a", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:41:02.409293+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30410958904109586, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4835087849910661, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "a4e5988661f244a18ec5ca0a116df8af", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 10, + "retrieved_at": "2026-07-14T23:41:06.617069+00:00", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4733918999404408, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "74827bf2b46c4580bf255d8c62feccbc", + "question_id": "q1", + "query_id": "4b26f9cf2ef649d0aa4084758ca48e12", + "engine": "tavily", + "url": "https://stthomassource.com/content/2025/02/11/dengue-h5n1-health-and-safety-update-for-agriculture-weekend/", + "canonical_url": "https://stthomassource.com/content/2025/02/11/dengue-h5n1-health-and-safety-update-for-agriculture-weekend", + "domain": "stthomassource.com", + "title": "Dengue, H5N1 Health and Safety Update for Agriculture Weekend - St, Thomas Source", + "snippet": "Dengue, H5N1 Health and Safety Update for Agriculture Weekend | St. Thomas Source \u201cTo date for 2025, we have 15 confirmed cases of dengue in the Territory, and all 15 of these are on St. Croix,\u201d said Dr. Esther Ellis, Territorial Epidemiologist for the VI Department of Health. Luis Hospital and Frederiksted Health Care Inc. In response, VI Department of Health teams have mobilized in the St. Croix district to inspect schools, apply larvicides in high-risk zones, and to educate schools on preventing mosquito bites and controlling breeding sites. The VI Department of Health has established a dengue hotline to provide you with information about dengue and prevention.", + "rank": 1, + "retrieved_at": "2026-07-14T23:41:07.647574+00:00", + "published_date": "2025-02-11T14:31:03+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9780821917808219, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.464329958308517, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "853ed3a3b9bb454096b36db859c1d937", + "question_id": "q1", + "query_id": "4f72f1fc6562429a88cced1538562c8a", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "title": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager - Los Angeles Times", + "snippet": "'Worrisome' mutations found in H5N1 bird flu virus in Canadian teen - Los Angeles Times But genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024. She tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. L.A. County health officials warn pet owners to avoid raw cat food after feline dies of bird flu", + "rank": 8, + "retrieved_at": "2026-07-14T23:41:04.525405+00:00", + "published_date": "2025-01-01T00:03:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8657534246575342, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4614122989874926, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "4c7fba9e69b34218b5199d061b9bc2e7", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "canonical_url": "https://latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "domain": "latimes.com", + "title": "California reports a total of eight H5N1 bird flu outbreaks among dairy herds - Los Angeles Times", + "snippet": "Bird flu outbreaks are rising among California dairy herds - Los Angeles Times California reports a total of eight H5N1 bird flu outbreaks among dairy herds The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. \u201cBovine vaccines may prove to be an important tool to eventually help eliminate the virus from the nation\u2019s dairy cattle herd, but developing a vaccine requires many steps and it will take time to test, approve, and distribute a successful vaccine,\u201d he said. Three more California dairy herds infected with H5N1 bird flu H5N1 bird flu infections suspected in California dairy herds", + "rank": 9, + "retrieved_at": "2026-07-14T23:41:05.652453+00:00", + "published_date": "2024-09-13T23:34:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5643835616438356, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44875719674409376, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "ca699499cbee48828ca7d308074e6c11", + "question_id": "q1", + "query_id": "4b26f9cf2ef649d0aa4084758ca48e12", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "domain": "cidrap.umn.edu", + "title": "CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. A wastewater dashboard; states report more H5N1 in dairy herds Smederevac/iStock The Centers for Disease Control and Prevention (CDC) today unveiled a new influenza A wastewater tracker, part of its surveillance for H5N1 avian influenza, as three states reported more detections in dairy herds. H5N1 detected in 4 more dairy herds In other developments, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today reported four more H5N1 detections in dairy herds, raising the total to 46. A wastewater dashboard; states report more H5N1 in dairy herds The tracker will help with surveillance, but it doesn't distinguish the influenza A subtype or determine the source of the virus. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:41:07.647716+00:00", + "published_date": "2024-05-14T20:54:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23013698630136992, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44736152471709345, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "ce9b68b130a44792960ddc37cefcbabe", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1/", + "canonical_url": "https://statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1", + "domain": "statnews.com", + "title": "WHO's Farrar: Social context is key to halting bird flu spread - STAT - STAT", + "snippet": "It\u2019s important to keep that experience in mind, he told STAT Monday, as the H5N1 bird flu virus now spreads among dairy cattle in the U.S. Farrar stressed that the social context is key in responding to disease threats like H5N1, noting that a similar reluctance among dairy farmers to report outbreaks or allow testing of their workers is adding to the challenges in assessing how much transmission is occurring and the risk it poses to people. Home Don't miss out Subscribe to STAT+ today, for the best life sciences journalism in the industry WHO\u2019s top scientist learned a hard lesson about H5N1 two decades ago: Stopping it takes more than biology By Helen Branswell May 7, 2024 Jeremy Farrar, now the World Health Organization\u2019s chief scientist, was working in Vietnam 20 years ago when the H5N1 virus started to spread across Asia \u2014 at that point in poultry. advertisement \u201cYou can\u2019t just take the virus and the biological surveillance and divorce it from the environment and the social construct that it\u2019s happening in,\u201d Farrar said in an interview from WHO headquarters in Geneva. Trending Recommended Recommended Stories STAT\u2019s Casey Ross and Bob Herman named 2024 Pulitzer Prize finalists STAT Plus: Endo Health ordered to pay more than $1.5 billion in opioid criminal case advertisement STAT Plus: Brain biopsies on \u2018vulnerable\u2019 patients at Mount Sinai set off alarm bells at FDA, documents show STAT Sign up for Morning Rounds Understand how science, health policy, and medicine shape the world every day While he believes the risk of a human flu pandemic triggered by the H5N1 virus is low, should it happen, the social context will also be crucial, Farrar continued.", + "rank": 6, + "retrieved_at": "2026-07-14T23:41:05.652193+00:00", + "published_date": "2024-05-07T08:34:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.21095890410958906, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44131328171530676, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "e3f6c44b733345b2aa848848fd2b64aa", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "domain": "cidrap.umn.edu", + "title": "USDA reports reveal biosecurity risks at H5N1-affected dairy farms - University of Minnesota Twin Cities", + "snippet": "In other H5N1 developments: Related news USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Yesterday, the Iowa Department of Agriculture and Land Stewardship reported the state's third outbreak in a dairy herd, which affected a second location in Sioux County. Updates on human investigations, vaccine production Responding to questions about Michigan's second case-patient in a dairy worker, who, unlike the other previous patients, had respiratory symptoms, Nirav Shah, JD, MD, principal deputy director for the Centers for Disease Control and Prevention (CDC), said the polymerase chain reaction cycle threshold\u00a0 (Ct) value for the patient's sample was high, suggesting a lower amount of viral RNA in the sample. Main navigation USDA reports reveal biosecurity risks at H5N1-affected dairy farms Naked King/iStock Shared equipment and shared personnel working on multiple dairy farms are some of the main risk factors for ongoing spread of highly pathogenic H5N1 avian flu in dairy cows, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) said today in a pair of new epidemiologic reports. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. One of the reports is an overview based on the results of questionnaires from affected dairy herds, and the other is a deep dive into the dairy cow and poultry outbreaks in Michigan, the state hit hardest by outbreaks in dairy cows, which now number at least 94. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:41:05.652015+00:00", + "published_date": "2024-06-13T20:33:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.41645026801667656, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "0ccb4c4eba764fcfa6b3d8a43e0813b9", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 2, + "retrieved_at": "2026-07-14T23:41:06.616607+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8493150684931507, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4155836807623586, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "bacf5c1431be4bda8bcd2718f3f0a7d2", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:41:02.409269+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30958904109589036, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4084744320598996, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "24fe969938534fbe9e49b9974f3f2237", + "question_id": "q1", + "query_id": "4b26f9cf2ef649d0aa4084758ca48e12", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "domain": "cidrap.umn.edu", + "title": "H5 influenza wastewater dashboard launches | CIDRAP - University of Minnesota Twin Cities", + "snippet": "In other avian flu developments: Related news Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker Australia reports imported human H5N1 avian flu case and unrelated high-path poultry outbreak Survey: States and territories able to test for highly pathogenic H5N1 This week's top reads Alpacas infected with H5N1 avian flu in Idaho In other developments, H5N1 was detected in feral cats in New Mexico and more dairy herds in affected states. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Iowa disaster proclamation Governor Reynolds yesterday announced the disaster proclamation for highly pathogenic avian flu in Cherokee County, the same day the Iowa Department of Agriculture and Land Stewardship\u00a0reported an outbreak at a commercial turkey farm in the county. Main navigation H5 influenza wastewater dashboard launches Luke Jones/Flickr cc WastewaterSCAN, a national wastewater monitoring system based at Stanford University in partnership with Emory University, today launched an\u00a0H5 avian influenza wastewater dashboard today, which shows detections at about a dozen locations, mostly in Texas and Michigan. Second dairy farm worker infected with H5 avian flu in Michigan Unlike similar earlier cases in the United States, the newly reported patient had respiratory symptoms. ", + "rank": 4, + "retrieved_at": "2026-07-14T23:41:07.647805+00:00", + "published_date": "2024-06-03T20:48:47+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2849315068493151, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4012105419892793, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "f9df7a32fcd3413aa4b8947b37845d43", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "canonical_url": "https://aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "domain": "aol.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - AOL", + "snippet": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. The report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk. Taken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. AOL Where to shop today's best deals: Kate Spade, Amazon, Walmart and more ----------------------------------------------------------------------", + "rank": 6, + "retrieved_at": "2026-07-14T23:41:02.409244+00:00", + "published_date": "2025-01-04T02:31:46+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.873972602739726, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3876146515783205, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "3c25e8b75c254d50abcaa8a84634a20b", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 3, + "retrieved_at": "2026-07-14T23:41:06.616725+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9835616438356164, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3844431209053008, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "c49ee77bfa534aa686e67f2ea725eabb", + "question_id": "q1", + "query_id": "4b26f9cf2ef649d0aa4084758ca48e12", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "domain": "cidrap.umn.edu", + "title": "Study shows 'not surprising' fatal spread of avian flu in ferrets - University of Minnesota Twin Cities", + "snippet": "International avian flu developments In global developments: Related news Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Study shows 'not surprising' fatal spread of avian flu in ferrets Vital Hil/iStock Late last week the Centers for Disease Control and Prevention (CDC) published a study showing that the current strain of H5N1 (A/Texas/37/2024) avian flu was fatal in six ferrets used as part of an experimental infection study. Household spread in pet ferrets In related news, a study out of Poland described the first documented cases of natural H5N1 cases in five pet ferrets, which occurred at the same time the country saw an uptick of H5 cases in cats in 2023. \" In Iowa, which confirmed high-path avian flu in dairy cattle last week, officials from the Iowa Department of Agriculture and Land Stewardship are requesting resources from the USDA and announcing additional response measures, including providing compensation for culled dairy cattle at a fair market value and compensation for lost milk production at a minimum of 90% of fair market value. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:41:07.647997+00:00", + "published_date": "2024-06-10T20:42:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30410958904109586, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3806283502084574, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "80c04db0336e40a6b6b647ede895ddf0", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.yahoo.com/news/america-first-severe-case-bird-172433528.html", + "canonical_url": "https://yahoo.com/news/america-first-severe-case-bird-172433528.html", + "domain": "yahoo.com", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana - Yahoo! Voices", + "snippet": "There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 4, + "retrieved_at": "2026-07-14T23:41:02.409191+00:00", + "published_date": "2024-12-18T17:24:33+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37589189994044075, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "e086ebc56af841969c2412861d04775b", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-05-15/avian-flu-raw-milk-birds-cows", + "canonical_url": "https://latimes.com/environment/story/2024-05-15/avian-flu-raw-milk-birds-cows", + "domain": "latimes.com", + "title": "Avian flu, cows, and raw milk concerns: Your questions answered - Los Angeles Times", + "snippet": "May 13, 2024 More to Read Experts blast CDC over failure to test sewage for signs of H5N1 bird flu virus May 10, 2024 Federal government \u2018believes\u2019 virus found in grocery store milk is safe for consumption April 24, 2024 Avian flu outbreak raises a disturbing question: Is our food system built on poop? April 18, 2024 Follow Us Susanne Rust is an award-winning investigative reporter specializing in environmental issues. Climate & Environment A rare songbird\u2019s epic journey from the edge of extinction back to the L.A. River Opinion Opinion: Florida just picked the wrong kind of meat to ban Subscribe for unlimited accessSite Map Follow Us MORE FROM THE L.A. TIMES More From the Los Angeles Times Climate & Environment Wildfire weather is increasing in California and much of the U.S., report finds California Climate change is central to both Pope Francis and Newsom. However, there have been a few cases in which it appears the virus may have spread between mammals, including on European fur farms, on a few South American beaches where elephant seals came to roost, and now among dairy cattle in the United States. Climate & Environment Despite H5N1 bird flu outbreaks in dairy cattle, raw milk enthusiasts are uncowed Despite warnings of H5N1 bird flu outbreaks among dairy cattle, raw milk enthusiasts say they will continue to drink unpasteurized milk. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:41:05.652536+00:00", + "published_date": "2024-05-15T10:00:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23287671232876717, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37480941036331156, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "6e05e233b3cf48559e24f6340e5e91b0", + "question_id": "q1", + "query_id": "4f72f1fc6562429a88cced1538562c8a", + "engine": "tavily", + "url": "https://www.forbes.com/sites/matthewbinnicker/2024/05/05/could-avian-influenza-be-the-next-covid-19/", + "canonical_url": "https://forbes.com/sites/matthewbinnicker/2024/05/05/could-avian-influenza-be-the-next-covid-19", + "domain": "forbes.com", + "title": "Could Avian Influenza Be The Next Covid-19? - Forbes", + "snippet": "Although sequencing studies have not yet demonstrated this to be the case, the recent human case in Texas has some asking, \u201cCould avian influenza result in the next pandemic?\u201d A highly pathogenic subtype of avian influenza, known as H5N1, has affected greater than 90 million ... This was the second documented human case of avian influenza in the United States since 2022, and has escalated concerns for a large outbreak \u2014 or potentially a pandemic \u2014 in the human population. We\u2019ve Known About H5N1 For Nearly Three Decades The highly pathogenic avian influenza subtype, H5N1, was first identified in Southern China in 1996 during an outbreak in domestic waterfowl, and resulted in more than 850 human infections with a mortality rate greater than 50%. Although HPAI has the potential to cause a significant outbreak in the human population, there are several significant differences of HPAI that make a global pandemic on the scale of Covid-19 less likely. To date, a subtype of highly pathogenic avian influenza \u2014 known as H5N1 \u2014 has been detected in over 9,000 wild birds and has affected greater than 90 million poultry in the United States.", + "rank": 10, + "retrieved_at": "2026-07-14T23:41:04.525512+00:00", + "published_date": "2024-05-05T21:21:25+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.20547945205479456, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3720696843359143, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "a23ddbd449e3466b941b12f413edeaa5", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 7, + "retrieved_at": "2026-07-14T23:41:06.616917+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3600944439717519, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "417a01e18a1a42bfab048fa8e961bf93", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 10, + "retrieved_at": "2026-07-14T23:41:02.409354+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3533918999404408, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "f38992ba9959471da13fe09ee9ca8d46", + "question_id": "q1", + "query_id": "4f72f1fc6562429a88cced1538562c8a", + "engine": "tavily", + "url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california/", + "canonical_url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california", + "domain": "nypost.com", + "title": "Human bird flu cases grow with 2 more confirmed in California - New York Post", + "snippet": "U.S. and California health officials confirmed two new cases of H5N1\u00a0bird flu\u00a0in dairy farm workers in the state on Friday, bringing the total of infected dairy workers in that state to six, and the total of human cases nationwide this year to 20. Health officials in the U.S. and California confirmed two more cases of H5N1 bird flu in dairy farm workers in the state on Friday. Six dairy workers in California have now contracted the virus, and the total number of human cases of bird flu nationwide is now at 20. California health officials said they expect additional cases to be identified among individuals who have regular contact with infected dairy cattle.", + "rank": 6, + "retrieved_at": "2026-07-14T23:41:04.525312+00:00", + "published_date": "2024-10-12T01:22:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6438356164383562, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.34503573555687916, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "753d8f8661bc400f8b6b47c236737d5f", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "canonical_url": "https://newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "domain": "newsweek.com", + "title": "Bird Flu Map Update as US Cases Rise to 14 - Newsweek", + "snippet": "In addition to being the first case not linked to contact with a sick animal, Missouri officials said that the case was the first detected using the state's flu surveillance system, rather than protocol specifically tailored to detect H5N1 cases related to the recent outbreak in livestock like dairy cows and poultry. The latest infection makes Missouri the fourth U.S. state with a human case this year. The following map created by Newsweek shows that all of this year's human H5N1 cases have been limited to Colorado, Texas, Michigan and Missouri: No cases of human-to-human transmission have ever been detected in the U.S. In humans, bird flu can range in severity from no symptoms to mild symptoms like eye infections or upper respiratory illness.", + "rank": 5, + "retrieved_at": "2026-07-14T23:41:02.409220+00:00", + "published_date": "2024-09-07T03:17:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.547945205479452, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.34044669446098874, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "71ff9b06e84b4100a55fca775ac03f40", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "canonical_url": "https://biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "domain": "biospace.com", + "title": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace", + "snippet": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC H5N1 bird flu, also known as avian influenza A (H5N1), continues to spread among wild birds worldwide and is causing outbreaks in poultry and dairy cows in the U.S., with several recent cases identified in humans who work with these animals.1 Illness from the virus in the U.S. has been mild but severe illness in other countries has been associated with this virus.2 To prepare for if the current outbreak worsens, Hologic will work with the CDC to develop reagents that may be used for H5N1 testing.", + "rank": 8, + "retrieved_at": "2026-07-14T23:41:05.652291+00:00", + "published_date": "2024-12-18T14:15:15+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.33757668254913636, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "8c6b8ddbef57452ebc652ab0fd412e60", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:41:02.409161+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2849315068493151, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.334145324597975, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "81e2f93de3b648949da4508d1f539835", + "question_id": "q1", + "query_id": "72763981b2584be993c76212762bb823", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 8, + "retrieved_at": "2026-07-14T23:41:06.616983+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.323830405002978, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "d279acd2172c4b5485c9c33a7c41a167", + "question_id": "q1", + "query_id": "eeaf3df423fc4877b6b5d37c361f796a", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:41:02.409325+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3159281318244987, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "9f053c86992c4b9887e709bccb54c97c", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "http://www.sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "canonical_url": "http://sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "domain": "sfchronicle.com", + "title": "California egg shortage drives prices to nearly $9 per dozen - San Francisco Chronicle", + "snippet": "California egg prices jump 70% due to bird flu outbreaks A sign posted in store coolers at Whole Foods on Ocean Avenue in San Francisco reads, \u201cFor now, we\u2019re limiting purchases to 3 cartons per customer.\u201d Egg prices have spiked 70% amid a nationwide dairy shortage spurred by the outbreak of H5N1 avian flu, commonly known as bird flu. The price hike, highlighted in the U.S. Department of Agriculture\u2019s December egg markets report, owes largely to a series of highly pathogenic avian influenza outbreaks that have decimated the state\u2019s poultry flocks. With the U.S. egg-laying flock expected to dip below 300 million hens \u2014 its lowest point since the 2022 bird flu crisis \u2014 the nation\u2019s egg production is unlikely to return to normal levels until mid-2025, assuming no additional outbreaks occur.", + "rank": 5, + "retrieved_at": "2026-07-14T23:41:05.652139+00:00", + "published_date": "2024-12-31T19:22:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3132578916021441, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "86a4a037c82f4c89b0d235d206f2771b", + "question_id": "q1", + "query_id": "4b26f9cf2ef649d0aa4084758ca48e12", + "engine": "tavily", + "url": "https://www.cbc.ca/news/health/wastewater-monitoring-h5n1-avian-flu-1.7200545", + "canonical_url": "https://cbc.ca/news/health/wastewater-monitoring-h5n1-avian-flu-1.7200545", + "domain": "cbc.ca", + "title": "Scientists watching wastewater for signs of H5N1 as U.S. bird flu outbreak in dairy cattle grows - CBC News", + "snippet": "Footer Links My Account Connect with CBC Contact CBC Audience Relations, CBC P.O. Box 500 Station A Toronto, ON Canada, M5W 1E6 Toll-free (Canada only): 1-866-306-4636 About CBC Services Accessibility \" Corrections ABOUT THE AUTHOR Senior Health & Medical Reporter Lauren Pelley covers health and medical science for CBC News, including the global spread of infectious diseases, Canadian health policy, pandemic preparedness, and the crucial intersection between human health and climate change. Lawrence Goodridge, director of the Canadian Research Institute for Food Safety and a professor at the University of Guelph, said his team started tracking influenza in Ontario wastewater a few months ago to study trends in human infections, and are now pivoting to see if any H5N1 shows up. With cases confirmed in dozens of herds across nine states \u2014 and roughly 300 people being tested or monitored for symptoms after the detection of one human case \u2014 the U.S. Centers for Disease Control and Prevention (CDC) is aiming to launch an online dashboard for wastewater monitoring as soon as Friday. At a handful of sites, the agency has already spotted spikes of influenza A, of which H5N1 is a subtype, and is investigating the source, the CDC's wastewater team lead Amy Kirby told Reuters. ", + "rank": 6, + "retrieved_at": "2026-07-14T23:41:07.647892+00:00", + "published_date": "2024-05-10T18:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.30256998213222164, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "9c2292c2991f4f0d9167ee85e5802966", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "canonical_url": "https://feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "domain": "feedstuffs.com", + "title": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing - Feedstuffs", + "snippet": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing U.S. dairy farmers are remaining resilient in the face of H5N1 influenza outbreaks while advancing in policy areas including nutrition and milk pricing, said NMPF Chairman Randy Mooney at the organization\u2019s annual meeting held in Phoenix Oct. 21-23. Underpinning the entire industry is USDA\u2019s plan for Federal Milk Marketing Order modernization, which is likely to resemble a proposal released in July that incorporated key NMPF principles and would be voted on by dairy farmers early next year. \u201cDairy farmers and their cooperatives have developed and embraced a robust biosecurity program through the National Dairy FARM Program,\u201d NMPF\u2019s Emily Yeiser Stepp said.", + "rank": 4, + "retrieved_at": "2026-07-14T23:41:05.652085+00:00", + "published_date": "2024-10-24T15:29:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6767123287671233, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.30212775461584274, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "d094ab9d9ecf43228734dc60d20cfd57", + "question_id": "q1", + "query_id": "7f2ee6d411164eb89c1d58c2638b5141", + "engine": "tavily", + "url": "https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "canonical_url": "https://news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "domain": "news-medical.net", + "title": "H5N1 bird flu is mutating fast and jumping to mammals - could the next pandemic be here? - News-Medical.Net", + "snippet": "Such rapid viral transmission started after the emergence of a new genotype of H5N1 viruses belonging to clade 2.3.4.4b, which infected wild birds from Europe to Africa, North America, South America, and the Antarctic. The article provides information on the acquisition of key adaptive mutations that enabled 2.3.4.4b H5N1 viruses to sustain mammal-to-mammal transmission. The authors have collected this information from three real-world settings: the 2022-2023 H5N1 outbreaks on European fur farms, the 2023 South American marine mammal-adapted virus, and the 2024 US dairy cattle outbreak. Genetic sequencing of H5N1 viruses from South American marine mammals identified the same known mammalian adaptations (PB2 D701N and Q591K) and other distinctive mutations absent in birds, supporting mammal-to-mammal transmission. Retrieved on September 25, 2024 from https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. . https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. News-Medical, viewed 25 September 2024, https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx.", + "rank": 7, + "retrieved_at": "2026-07-14T23:41:05.652243+00:00", + "published_date": "2024-09-26T00:29:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.2783850931677018, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/documents.json b/data/runs_ab_no_history/q1/traj_20250224/documents.json new file mode 100644 index 0000000..3b744e0 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/documents.json @@ -0,0 +1,656 @@ +[ + { + "id": "doc-3f57abc1797a4a91ba6cfd8750b62f14", + "result_id": "3f57abc1797a4a91ba6cfd8750b62f14", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:48:39.446855+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-3f57abc1797a4a91ba6cfd8750b62f14-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-3f57abc1797a4a91ba6cfd8750b62f14-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-3f57abc1797a4a91ba6cfd8750b62f14-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-3f57abc1797a4a91ba6cfd8750b62f14-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-e592a27ad3cb481c8bd5886d7187e2d5", + "result_id": "e592a27ad3cb481c8bd5886d7187e2d5", + "source_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:48:53.116472+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-22T17:50:12+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-e592a27ad3cb481c8bd5886d7187e2d5-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-50035b18a4cd487f96534d6e808c4fbf", + "result_id": "50035b18a4cd487f96534d6e808c4fbf", + "source_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:49:21.579446+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-22T22:00:04+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-50035b18a4cd487f96534d6e808c4fbf-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-50035b18a4cd487f96534d6e808c4fbf-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-50035b18a4cd487f96534d6e808c4fbf-c2", + "chunk_index": 2, + "text": "\u2022 12,064 wild birds detected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 162,801,168 poultry affected as of 2/21/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 973 dairy herds affected as of 2/21/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/18/2025", + "2/21/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-9892c6af722e48afae51c2f404b8e80a", + "result_id": "9892c6af722e48afae51c2f404b8e80a", + "source_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:50:29.341232+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-21T23:54:53+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-9892c6af722e48afae51c2f404b8e80a-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-9892c6af722e48afae51c2f404b8e80a-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-9892c6af722e48afae51c2f404b8e80a-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-9892c6af722e48afae51c2f404b8e80a-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-9892c6af722e48afae51c2f404b8e80a-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "result_id": "08a9d1af007d4a9291e6f2dd1b49f4c8", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:50:30.993263+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-1a54af62de424fda94562938c4fc1b73", + "result_id": "1a54af62de424fda94562938c4fc1b73", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "fetched_at": "2026-07-14T23:50:37.936912+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "title": "Bird flu: First death from H5N1 strain reported in US", + "published_date": "2025-01-07T16:25:05+00:00", + "language": "en", + "page_count": null, + "char_count": 2872, + "token_count": 606, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-1a54af62de424fda94562938c4fc1b73-c0", + "chunk_index": 0, + "text": "The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred.\nThe patient had been taken to hospital after contracting a major strain of bird flu, known as H5N1.\nLouisiana health department said they were over the age of 65, and had other underlying health conditions.\nIt said their public health investigation had not found evidence of person-to-person transmission, or any other cases.\nBird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. In very rare cases, it can also infect humans.\nThe state's health department added the person had contracted bird flu after being exposed to a personal flock of birds and wild birds.\n\"While the current public health risk for the general public remains low, people who work with birds, poultry or cows, or have recreational exposure to them, are at higher risk,\" it said.\nThere have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC).", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US", + "page_number": null, + "table_data": null, + "token_count": 228, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-1a54af62de424fda94562938c4fc1b73-c1", + "chunk_index": 1, + "text": "Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Bird migration has resulted in outbreaks of the avian flu in domestic and wild birds.\nThe H5N1 virus is the major strain circulating among wild birds worldwide, and emerged in China in the late 1990s.\nAlthough infection of humans is very rare, it occurs via transmission from birds.\nAlmost all cases of infection in people have been associated with close contact to infected dead or live birds, or contaminated environments.\nSince 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.\nThere has been no sustained human-to-human transmission.\nLast month, the CDC said the Louisiana patient had been infected with the D1.1variant of the virus, which has recently been detected in North America.\nA 13-year-old girl in Canada was taken to hospital with the same D1.1 variant in November 2024, according to a paper published in The New England Journal of Medicine.\nIt is different to the B3.13 variant, which - during the past year - has been on the rise among cows in the US.\nIn September 2024, a person in Missouri recovered from bird flu after being treated in hospital.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > What is bird flu?", + "page_number": null, + "table_data": null, + "token_count": 263, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-1a54af62de424fda94562938c4fc1b73-c2", + "chunk_index": 2, + "text": "According to the WHO, symptoms of a H5N1 infection include a cough, sore throat, fever (often over 38C), muscle aches and general feelings of malaise.\nPeople with the virus may also display other non-respiratory symptoms such as conjunctivitis.\nThe WHO added that H5N1 has also been detected in people without symptoms who had contact with infected animals or their environments.\nWhile the risk to humans is low, the constantly evolving virus is monitored for all changes, including the potential to become easily transmissible from person to person.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > Bird flu symptoms", + "page_number": null, + "table_data": null, + "token_count": 115, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T22:05:39+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-e4c0f772f7bb40fbb2cb232f0db01285", + "result_id": "e4c0f772f7bb40fbb2cb232f0db01285", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:50:41.622995+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-ad0a8fe44ac74067bf72756185d98061", + "result_id": "ad0a8fe44ac74067bf72756185d98061", + "source_url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "fetched_at": "2026-07-14T23:50:52.614146+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "title": "'Worrisome' mutations found in H5N1 bird flu virus isolated from Canadian teenager", + "published_date": "2024-12-31T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4841, + "token_count": 1004, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-ad0a8fe44ac74067bf72756185d98061-c0", + "chunk_index": 0, + "text": "\u2022 Share via\nThe fate of a Canadian teenager who was infected with H5N1 bird flu in early November, and subsequently admitted to an intensive care unit, has finally been revealed: She has fully recovered.\nBut genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d\nThe case was published Tuesday in a special edition of the New England Journal of Medicine that explored H5N1 cases from 2024 in North America. In one study, doctors and researchers who worked with the Canadian teenager published their findings. In the other, public health officials from across the U.S. \u2014 from the Centers for Disease Control and Prevention, as well as state and local health departments \u2014 chronicled the 46 human cases that occurred between March and October.\nThere have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024.\nIn the case of the 13-year-old Canadian child, the girl was admitted to a local emergency room on Nov. 4 having suffered from two days of conjunctivitis (pink eye) in both eyes and one day of fever. The child, who had a history of asthma, an elevated body-mass index and Class 2 obesity, was discharged that day with no treatment.\nOver the next three days, she developed a cough and diarrhea and began vomiting. She was taken back to the ER on Nov. 7 in respiratory distress and with a condition called hemodynamic instability, in which her body was unable to maintain consistent blood flow and pressure. She was admitted to the hospital.\nOn Nov. 8, she was transferred to a pediatric intensive care unit at another hospital with respiratory failure, pneumonia in her left lower lung, acute kidney injury, thrombocytopenia (low platelet numbers) and leukopenia (low white blood cell count).\nShe tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. This finding prompted her caregivers to test for bird flu; she tested positive.\nAs the disease progressed over the next few days, she was intubated and put on extracorporeal membrane oxygenation (ECMO) \u2014 a life support technique that temporarily takes over the function of the heart and lungs for patients with severe heart or lung conditions.\nShe was also treated with three antiviral medications, including oseltamivir (brand name Tamiflu), amantadine (Gocovri) and baloxavir (Xofluza).\nBecause of concerns about the potential for a cytokine storm \u2014 a potentially lethal condition in which the body releases too many inflammatory molecules \u2014 she was put on a daily regimen of plasma exchange therapy, in which the patient\u2019s plasma is removed in exchange for donated, health plasma.\nAs the days went by, her viral load began to decrease; on Nov. 16, eight days after she\u2019d been admitted, she tested negative for the virus.\nThe authors of the report noted, however, that the viral load remained consistently higher in her lower lungs than in her upper respiratory tract \u2014 suggesting that the disease may manifest in places not currently tested for it (like the lower lungs) even as it disappears from those that are tested (like the mouth and nose).\nShe fully recovered and was discharged sometime after Nov. 28, when her intubation tube was removed.\nGenetic sequencing of the virus circulating in the teenager showed it was similar to the one circulating in wild birds, the D1.1 version. It\u2019s a type of H5N1 bird flu that is related, but distinct, from the type circulating in dairy cows and is responsible for the vast majority of human cases reported in the U.S. \u2014 most of which were acquired via dairy cows or commercial poultry. This is also the same version of the virus found in a Louisiana patient who experienced severe disease, and it showed a few mutations that researchers say increases the virus\u2019 ability to replicate in human cells.\nIn the Louisiana case, researchers from the CDC suggested the mutations arose as it replicated in the patient and were were not likely present in the wild.\nIrrespective of where and when they occurred, said Jennifer Nuzzo, director of the Pandemic Center at Brown University in Providence, R.I., \u201cit is worrisome because it indicates that the virus can change in a person and possibly cause a greater severity of symptoms than initial infection.\u201d\nIn addition, said Nuzzo \u2014 who was not involved in the research \u2014 while there\u2019s evidence these mutations occurred after the patients were infected, and therefore not circulating in the environment \u201cit increases worries that some people may experience more severe infection than other people. Bottom line is that this is not a good virus to get.\u201d", + "chunk_type": "prose", + "heading": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager", + "page_number": null, + "table_data": null, + "token_count": 1004, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-11T03:55:59+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/filtered.json b/data/runs_ab_no_history/q1/traj_20250224/filtered.json new file mode 100644 index 0000000..c6222b7 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/filtered.json @@ -0,0 +1,208 @@ +[ + { + "result_id": "3f57abc1797a4a91ba6cfd8750b62f14", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "e592a27ad3cb481c8bd5886d7187e2d5", + "question_id": "q1", + "url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-22T17:50:12+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "50035b18a4cd487f96534d6e808c4fbf", + "question_id": "q1", + "url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-22T22:00:04+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "9892c6af722e48afae51c2f404b8e80a", + "question_id": "q1", + "url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-21T23:54:53+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "08a9d1af007d4a9291e6f2dd1b49f4c8", + "question_id": "q1", + "url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-21T23:56:38+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "1a54af62de424fda94562938c4fc1b73", + "question_id": "q1", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "relevance_score": 0.9, + "credibility_score": 0.8, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "e4c0f772f7bb40fbb2cb232f0db01285", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "ad0a8fe44ac74067bf72756185d98061", + "question_id": "q1", + "url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "title": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager - Los Angeles Times", + "snippet": "'Worrisome' mutations found in H5N1 bird flu virus in Canadian teen - Los Angeles Times But genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024. She tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. L.A. County health officials warn pet owners to avoid raw cat food after feline dies of bird flu", + "published_date": "2025-01-01T00:03:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/forecast.json b/data/runs_ab_no_history/q1/traj_20250224/forecast.json new file mode 100644 index 0000000..5636578 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/forecast.json @@ -0,0 +1,153 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9835928913625247, + "100-150": 0.012312603857545758, + "150-200": 0.0029955097501227815, + "200+": 0.0010989950298066595 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9835928913625247, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 0.012312603857545758, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 0.0029955097501227815, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 0.0010989950298066595, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.7, + 0.15, + 0.1, + 0.05 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in H5N1 cases in the US suggests higher transmission rate.", + "High concentration of cases in California, a populous state, which could lead to more cases if containment is not effective.", + "Historical global data shows H5N1 can have significant outbreaks." + ], + "drivers_down": [ + "Currently only 9 confirmed cases in January 2025, which is far from the lower threshold of 70 for the options given.", + "Previous cases have been linked to specific agricultural settings rather than widespread community transmission, suggesting limited spread.", + "Global H5N1 cases historically have not resulted in large numbers in the US." + ], + "why_might_be_wrong": "There could be a sudden outbreak or misreporting that significantly increases the number of confirmed cases beyond current trends.", + "rationale": "As of January 2025, there are 9 confirmed cases of H5N1 in the US, with a history of sporadic cases rather than a large outbreak. The base rate for large outbreaks is low in the US, and while recent trends suggest an increase in cases, it is unlikely to reach the thresholds of 70+ cases given the current containment strategies and the nature of transmission being limited mostly to agricultural settings. However, unpredictability in viral transmission or reporting could lead to unexpected results.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.85, + 0.1, + 0.03, + 0.02 + ], + "ok": true, + "reference_class": "Cumulative human H5N1 cases in the US in recent years", + "base_rate": 0.01, + "drivers_up": [ + "Recent increase in confirmed cases from 61 to 67 within a short period suggests a rising trend.", + "High transmission potential due to connections with commercial agriculture." + ], + "drivers_down": [ + "Only 9 new cases reported from January 15 to January 20, 2025, suggesting a slowdown.", + "Historical base rates of H5N1 in humans are generally low globally and in the US.", + "No evidence of a significant outbreak or change in virus transmissibility." + ], + "why_might_be_wrong": "A sudden outbreak or change in virus transmissibility could lead to a rapid increase in cases.", + "rationale": "The base rate of H5N1 cases in the US is low, with only 67 cases since 2022. Recent data show a slowing trend in reported cases, with only 9 new cases in January 2025. While there is a potential for increased transmission linked to commercial agriculture, the lack of a major outbreak and low historical incidence suggest that reaching any of the higher brackets is unlikely. Thus, the probability is weighted heavily towards the lower range of 70-100 cases.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.9, + 0.05, + 0.03, + 0.02 + ], + "ok": true, + "reference_class": "Past H5N1 outbreaks in the United States", + "base_rate": 0.1, + "drivers_up": [ + "Significant increase in cases from 2024 to early 2025, indicating potential for further growth.", + "Presence of H5N1 in multiple states suggesting wider spread." + ], + "drivers_down": [ + "Current cumulative confirmed cases are only at 9, far from the lowest option threshold of 70.", + "H5N1 generally has low human-to-human transmission rates.", + "Previous cases in 2024 were largely linked to commercial agriculture, a specific source that can be controlled." + ], + "why_might_be_wrong": "The rate of new cases could accelerate unexpectedly due to changes in the virus's transmission dynamics or human behavior, leading to a larger outbreak than anticipated.", + "rationale": "The current cumulative number of confirmed cases is only 9, which is far below the threshold for the lowest option (70-100). While there has been a recent increase in cases, the total is still quite low, and H5N1 typically does not spread easily between humans. Additionally, many of the past cases were linked to specific agricultural exposure, suggesting that control measures could limit further spread. Given the low base rate and current numbers, the probability of reaching 70 cases by the target date is very low.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-79b39d6cd2e9", + "ins-e13f9c1c66be", + "ins-52804af640ac", + "ins-ca5809281766", + "ins-79ad3241b13f", + "ins-5623220d5ccb", + "ins-b726026b1cac", + "ins-5cf522e4c6ee", + "ins-b844d077e306", + "ins-76b4e3e66d49", + "ins-72990952deef" + ], + "budget_summary": { + "total_input_tokens": 5223, + "total_output_tokens": 837, + "total_tokens": 6060, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 5223, + "output_tokens": 837, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/insight.json b/data/runs_ab_no_history/q1/traj_20250224/insight.json new file mode 100644 index 0000000..4c6ff56 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/insight.json @@ -0,0 +1,355 @@ +{ + "records": [ + { + "id": "ins-72990952deef", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Cumulative total of confirmed cases since 2022, with all but one occurring in 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:01.607665+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c3", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-b844d077e306", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 66.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed H5N1 cases in the US since 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:05.839265+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-1a54af62de424fda94562938c4fc1b73", + "chunk_id": "doc-1a54af62de424fda94562938c4fc1b73-c0", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "There have been 66 confirmed cases of H5N1 bird flu in the US since 2024" + }, + { + "document_id": "doc-ad0a8fe44ac74067bf72756185d98061", + "chunk_id": "doc-ad0a8fe44ac74067bf72756185d98061-c0", + "source_url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "quote": "There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024." + } + ] + }, + { + "id": "ins-79ad3241b13f", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Confirmed human infections recorded in the U.S. this year, with 34 cases reported, mostly in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:07.905811+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285", + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-5623220d5ccb", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "first known case of H5N1 infection in the U.S. linked to sick and dead birds in backyard flocks", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:09.395808+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285", + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "the first known case of infection in the U.S. to have those origins." + } + ] + }, + { + "id": "ins-b726026b1cac", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 60.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "total of 60 other cases, with 58 linked to commercial agriculture", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:09.395927+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285", + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the 60 other cases, 58 were linked to commercial agriculture" + } + ] + }, + { + "id": "ins-5cf522e4c6ee", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of infection with influenza A(H5) reported from Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:04.153692+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-52804af640ac", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-20T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of infection with influenza A(H5) reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:04.154524+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-e13f9c1c66be", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of infection with influenza A(H5) reported from California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:04.155054+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-79b39d6cd2e9", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human cases of influenza A(H5) virus in the US since the last risk assessment.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:01.707463+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8", + "chunk_id": "doc-08a9d1af007d4a9291e6f2dd1b49f4c8-c1", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-76b4e3e66d49", + "question_id": "q1", + "event_type": "other", + "confidence": 0.5, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 954.0, + "metric_unit": null, + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2003-01-01T00:00:00", + "event_date_precision": "day", + "summary": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:06.044193+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-1a54af62de424fda94562938c4fc1b73", + "chunk_id": "doc-1a54af62de424fda94562938c4fc1b73-c1", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died." + } + ] + }, + { + "id": "ins-ca5809281766", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:51:07.823021+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285", + "chunk_id": "doc-e4c0f772f7bb40fbb2cb232f0db01285-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 75670, + "total_output_tokens": 1602, + "total_tokens": 77272, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 75670, + "output_tokens": 1602, + "calls": 34 + } + } + }, + "documents_processed": 8, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/manifest.json b/data/runs_ab_no_history/q1/traj_20250224/manifest.json new file mode 100644 index 0000000..8fd21d3 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250224", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:44:14.764966+00:00", + "completed_at": "2026-07-14T23:51:24.094627+00:00", + "stage_timings": { + "search": 214.123, + "filter": 3.485, + "extract": 181.589, + "insight": 17.222, + "forecast": 12.902 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": true + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-e592a27ad3cb481c8bd5886d7187e2d5", + "result_id": "e592a27ad3cb481c8bd5886d7187e2d5", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.0 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 77711, + "output_tokens": 1964, + "calls": 37 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 5223, + "output_tokens": 837, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 99, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 1651, + "output_tokens": 263, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 75670, + "output_tokens": 1602, + "calls": 34 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 5223, + "output_tokens": 837, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000118, + "filter": 0.000405, + "insight": 0.012312, + "forecast": 0.021427 + }, + "estimated_cost_usd": 0.034263 +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/question.json b/data/runs_ab_no_history/q1/traj_20250224/question.json new file mode 100644 index 0000000..82b7bda --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-24T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_no_history/q1/traj_20250224/search.json b/data/runs_ab_no_history/q1/traj_20250224/search.json new file mode 100644 index 0000000..4ad36a8 --- /dev/null +++ b/data/runs_ab_no_history/q1/traj_20250224/search.json @@ -0,0 +1,1122 @@ +[ + { + "id": "3f57abc1797a4a91ba6cfd8750b62f14", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:44:16.564226+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9616438356164384, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6831209053007743, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e592a27ad3cb481c8bd5886d7187e2d5", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:44:16.564226+00:00", + "published_date": "2025-02-22T17:50:12+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6084216795711733, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "33d02c80226e4a599205906d7f152064", + "question_id": "q1", + "query_id": "a1f8506739b94422adb86ef903c801ab", + "engine": "tavily", + "url": "https://www.nature.com/articles/s41598-025-87659-4", + "canonical_url": "https://nature.com/articles/s41598-025-87659-4", + "domain": "nature.com", + "title": "Effectiveness of iNTS vaccination in sub-Saharan Africa - Nature.com", + "snippet": "Based on the model projections, the 10-year vaccination campaign would reduce the burden of the disease by 34,187,000\u201339,117,000 DALYs for all sSA (Table 1 Per-country cumulative cases prevented, deaths and DALYs averted (RCU)). There are considerable differences in cases prevented across countries, due to their differences in the prevalence of comorbidities among children below 5 years old and EPI vaccination coverage levels (Fig. 3 Vaccine efficacy as percentage of prevented infections per country and Supplementary Figs. This needs to be kept in mind when interpreting our results, as the number of iNTS cases among children below 5 years of age is likely to be higher than our estimate, especially in countries where malaria prevalence is higher, and consequently the reduction in cases in these countries after the vaccination campaign is very likely higher than our estimate.", + "rank": 6, + "retrieved_at": "2026-07-14T23:47:48.877472+00:00", + "published_date": "2025-01-30T12:30:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "academic", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9342465753424658, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5945116140559857, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "50035b18a4cd487f96534d6e808c4fbf", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:44:16.564226+00:00", + "published_date": "2025-02-22T22:00:04+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5692912447885646, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "9892c6af722e48afae51c2f404b8e80a", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:44:16.564226+00:00", + "published_date": "2025-02-21T23:54:53+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9945205479452055, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5690172721858249, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "08a9d1af007d4a9291e6f2dd1b49f4c8", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:44:16.564226+00:00", + "published_date": "2025-02-21T23:56:38+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9945205479452055, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5690172721858249, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "1a54af62de424fda94562938c4fc1b73", + "question_id": "q1", + "query_id": "32f012a261a347d7bc3c0411eaaf0119", + "engine": "tavily", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "rank": 4, + "retrieved_at": "2026-07-14T23:47:47.909811+00:00", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8712328767123287, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5589711137581893, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e4c0f772f7bb40fbb2cb232f0db01285", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:47:45.453319+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.552135199523526, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "983fa74e11ea43fe94416ef2a1d96f76", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 1, + "retrieved_at": "2026-07-14T23:47:47.542504+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5360154854079809, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "7df5dd7ffa434275b4428ea09d2092a0", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:47:45.453115+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8712328767123287, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5123406789755808, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "823e7104aa004fbdac57701598c28349", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 2, + "retrieved_at": "2026-07-14T23:47:47.542626+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23561643835616441, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.49247468731387734, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "090d30c71b364b0abba6cb09785226da", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:47:45.453832+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29315068493150687, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.48241289458010717, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "a830d87344644ee48674d5956406f820", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://www.ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "canonical_url": "https://ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "domain": "ladysmithchronicle.com", + "title": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chronicle", + "snippet": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chemainus Chronicle News As we enter 2025, Dr. Theresa Tam has her eye on H5N1 bird flu, an emerging virus that had its first human case in Canada this year. At the same time, Canada\u2019s chief public health officer is closely monitoring measles \u2014 a virus that was eliminated in this country more than two decades ago, but is making an accelerated resurgence. \u201cWhat I am particularly concerned about is that this virus has demonstrated the capability of a whole range of clinical outcomes, from asymptomatic infection \u2026 all the way to rare cases of severe illness,\u201d said Tam in a year-end interview on Dec. 18. News", + "rank": 1, + "retrieved_at": "2026-07-14T23:47:46.533181+00:00", + "published_date": "2024-12-27T19:45:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8410958904109589, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4701965455628351, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "ad0a8fe44ac74067bf72756185d98061", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "canonical_url": "https://latimes.com/environment/story/2024-12-31/worrisome-mutations-found-in-h5n1-bird-flu-virus-isolated-from-canadian-teenager", + "domain": "latimes.com", + "title": "\u2018Worrisome\u2019 mutations found in H5N1 bird flu virus isolated from Canadian teenager - Los Angeles Times", + "snippet": "'Worrisome' mutations found in H5N1 bird flu virus in Canadian teen - Los Angeles Times But genetic analysis of the virus that infected her body showed ominous mutations that researchers suggest potentially allowed it to target human cells more easily and cause severe disease \u2014 a development the study authors called \u201cworrisome.\u201d There have been a total of 66 reported human cases of H5N1 bird flu in the U.S. in 2024. She tested negative for the predominant human seasonal influenza viruses \u2014 but had a high viral loads of influenza A, which includes the major human seasonal flu viruses, as well as H5N1 bird flu. L.A. County health officials warn pet owners to avoid raw cat food after feline dies of bird flu", + "rank": 9, + "retrieved_at": "2026-07-14T23:47:46.533579+00:00", + "published_date": "2025-01-01T00:03:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8547945205479452, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.45823307524320034, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "7b334c8c45d346eca0a901e865a7d859", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "canonical_url": "https://latimes.com/environment/story/2024-09-13/bird-flu-outbreaks-are-rising-among-california-dairy-herds", + "domain": "latimes.com", + "title": "California reports a total of eight H5N1 bird flu outbreaks among dairy herds - Los Angeles Times", + "snippet": "Bird flu outbreaks are rising among California dairy herds - Los Angeles Times California reports a total of eight H5N1 bird flu outbreaks among dairy herds The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. The number of California dairy herds reported to have outbreaks of H5N1 bird flu has grown to eight. \u201cBovine vaccines may prove to be an important tool to eventually help eliminate the virus from the nation\u2019s dairy cattle herd, but developing a vaccine requires many steps and it will take time to test, approve, and distribute a successful vaccine,\u201d he said. Three more California dairy herds infected with H5N1 bird flu H5N1 bird flu infections suspected in California dairy herds", + "rank": 10, + "retrieved_at": "2026-07-14T23:47:47.543175+00:00", + "published_date": "2024-09-13T23:34:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5534246575342465, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4459946396664682, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "43856846b23c49ddb52b685ea0b9bb55", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1/", + "canonical_url": "https://statnews.com/2024/05/07/bird-flu-spread-who-chief-scientist-farrar-on-stopping-h5n1", + "domain": "statnews.com", + "title": "WHO's Farrar: Social context is key to halting bird flu spread - STAT - STAT", + "snippet": "It\u2019s important to keep that experience in mind, he told STAT Monday, as the H5N1 bird flu virus now spreads among dairy cattle in the U.S. Farrar stressed that the social context is key in responding to disease threats like H5N1, noting that a similar reluctance among dairy farmers to report outbreaks or allow testing of their workers is adding to the challenges in assessing how much transmission is occurring and the risk it poses to people. Home Don't miss out Subscribe to STAT+ today, for the best life sciences journalism in the industry WHO\u2019s top scientist learned a hard lesson about H5N1 two decades ago: Stopping it takes more than biology By Helen Branswell May 7, 2024 Jeremy Farrar, now the World Health Organization\u2019s chief scientist, was working in Vietnam 20 years ago when the H5N1 virus started to spread across Asia \u2014 at that point in poultry. advertisement \u201cYou can\u2019t just take the virus and the biological surveillance and divorce it from the environment and the social construct that it\u2019s happening in,\u201d Farrar said in an interview from WHO headquarters in Geneva. Trending Recommended Recommended Stories STAT\u2019s Casey Ross and Bob Herman named 2024 Pulitzer Prize finalists STAT Plus: Endo Health ordered to pay more than $1.5 billion in opioid criminal case advertisement STAT Plus: Brain biopsies on \u2018vulnerable\u2019 patients at Mount Sinai set off alarm bells at FDA, documents show STAT Sign up for Morning Rounds Understand how science, health policy, and medicine shape the world every day While he believes the risk of a human flu pandemic triggered by the H5N1 virus is low, should it happen, the social context will also be crucial, Farrar continued.", + "rank": 7, + "retrieved_at": "2026-07-14T23:47:47.542984+00:00", + "published_date": "2024-05-07T08:34:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.19999999999999996, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4366459627329193, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "f306475a7f0244f4a27191cab35587d6", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://www.forbes.com/sites/victoriaforster/2024/11/10/canada-reports-first-human-case-of-h5n1-bird-flu/", + "canonical_url": "https://forbes.com/sites/victoriaforster/2024/11/10/canada-reports-first-human-case-of-h5n1-bird-flu", + "domain": "forbes.com", + "title": "Canada Reports First Human Case Of H5N1 Bird Flu - Forbes", + "snippet": "Canada Reports First Human Case Of H5N1 Bird Flu Canada Reports First Human Case Of H5N1 Bird Flu Canada Reports First Human Case Of H5N1 Bird Flu A teenager in British Columbia, Canada has been hospitalized with a presumed case of H5N1 bird flu, the first detected human case in the country from the recent outbreak. \u201cThis is a rare event, and while it is the first detected case of H5 in a person in B.C. or in Canada, there have been a small number of human cases in the U.S. and elsewhere, which is why we are conducting a thorough investigation to fully understand the source of exposure here in B.C,\u201d said Henry.", + "rank": 10, + "retrieved_at": "2026-07-14T23:47:46.533639+00:00", + "published_date": "2024-11-10T14:43:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.7123287671232876, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4227546158427636, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "4f581f9b0c3845198846b89ea6ff568e", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "domain": "cidrap.umn.edu", + "title": "USDA reports reveal biosecurity risks at H5N1-affected dairy farms - University of Minnesota Twin Cities", + "snippet": "In other H5N1 developments: Related news USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Yesterday, the Iowa Department of Agriculture and Land Stewardship reported the state's third outbreak in a dairy herd, which affected a second location in Sioux County. Updates on human investigations, vaccine production Responding to questions about Michigan's second case-patient in a dairy worker, who, unlike the other previous patients, had respiratory symptoms, Nirav Shah, JD, MD, principal deputy director for the Centers for Disease Control and Prevention (CDC), said the polymerase chain reaction cycle threshold\u00a0 (Ct) value for the patient's sample was high, suggesting a lower amount of viral RNA in the sample. Main navigation USDA reports reveal biosecurity risks at H5N1-affected dairy farms Naked King/iStock Shared equipment and shared personnel working on multiple dairy farms are some of the main risk factors for ongoing spread of highly pathogenic H5N1 avian flu in dairy cows, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) said today in a pair of new epidemiologic reports. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. One of the reports is an overview based on the results of questionnaires from affected dairy herds, and the other is a deep dive into the dairy cow and poultry outbreaks in Michigan, the state hit hardest by outbreaks in dairy cows, which now number at least 94. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:47:47.542710+00:00", + "published_date": "2024-06-13T20:33:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3013698630136986, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.41535437760571764, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "7ee2cd67f1ce4d56983e593aaaf98274", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "canonical_url": "https://latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "domain": "latimes.com", + "title": "H5N1 bird flu infects five more humans in California, and one in Oregon - Los Angeles Times", + "snippet": "H5N1 bird flu infects six more humans in California, Oregon - Los Angeles Times H5N1 bird flu infects five more humans in California, and one in Oregon Health officials have announced six more H5N1 bird flu infections in humans: five in California and the first known case in Oregon. Five new human cases of H5N1 bird flu have been detected in California. As H5N1 bird flu spreads among California dairy herds and southward-migrating birds, health officials announced Friday that six more human cases of infection: five in California and one in Oregon \u2014 the state\u2019s first. Cases of H5N1 bird flu in U.S. dairy and poultry workers have largely been mild. Public health officials maintain the risk of H5N1 bird flu infection remains low.", + "rank": 7, + "retrieved_at": "2026-07-14T23:47:46.533495+00:00", + "published_date": "2024-11-16T01:21:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.7287671232876712, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.411261805496469, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "07fda95314ec41a99081a08c468f9f8a", + "question_id": "q1", + "query_id": "a1f8506739b94422adb86ef903c801ab", + "engine": "tavily", + "url": "https://www.riverbender.com/news/details/illinois-department-of-agriculture-suspends-poultry-exhibition-and-sale-events-79638.cfm?__cf_chl_rt_tk=EoL4obvK2CCsK4wPZk127gotw2yuwy2SFNHtrFY8bX4-1739395549-1.0.1.1-EcC5L0Mg9MeCtTWEt7dkqZB14NdyDgP3v1awsLdubhQ", + "canonical_url": "https://riverbender.com/news/details/illinois-department-of-agriculture-suspends-poultry-exhibition-and-sale-events-79638.cfm?__cf_chl_rt_tk=EoL4obvK2CCsK4wPZk127gotw2yuwy2SFNHtrFY8bX4-1739395549-1.0.1.1-EcC5L0Mg9MeCtTWEt7dkqZB14NdyDgP3v1awsLdubhQ", + "domain": "riverbender.com", + "title": "Illinois Department Of Agriculture Suspends Poultry Exhibition And Sale Events - RiverBender.com", + "snippet": "SPRINGFIELD, IL - The Illinois Department of Agriculture (IDOA) is issuing a 30-day suspension, effective Tuesday, February 11, 2025, on the exhibition or sale of poultry at swap meets, exhibitions, flea markets, and auction markets in response to the ongoing threat of H5N1 avian flu. Avian flu is caused by an influenza type A virus which can infect poultry (such as chickens, turkeys, pheasants, quail, domestic ducks, geese, and guinea fowl) and wild birds (especially waterfowl). \u201cThe Illinois Department of Public Health (IDPH) strongly supports this precautionary move by the Department of Agriculture to reduce the spread of the H5N1 avian flu virus,\u201d said IDPH Director Dr. Sameer Vohra.", + "rank": 2, + "retrieved_at": "2026-07-14T23:47:48.877133+00:00", + "published_date": "2025-02-12T17:14:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9698630136986301, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.40807325789160215, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "b793e58cd98d4aeb90d78e6fffa04da8", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:47:45.453741+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4073785416489407, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "712e5264ab65495b8a58ccf3428ba089", + "question_id": "q1", + "query_id": "a1f8506739b94422adb86ef903c801ab", + "engine": "tavily", + "url": "https://nypost.com/2024/11/23/lifestyle/first-bird-flu-case-in-a-child-in-the-us-confirmed-by-cdc-in-california/?utm_campaign=nypost&utm_medium=referral", + "canonical_url": "https://nypost.com/2024/11/23/lifestyle/first-bird-flu-case-in-a-child-in-the-us-confirmed-by-cdc-in-california", + "domain": "nypost.com", + "title": "First bird flu case in a child in the US confirmed by CDC in California - New York Post", + "snippet": "First bird flu case in a child in the US confirmed by CDC in California\t The US Centers for Disease Control and Prevention on Friday confirmed the country\u2019s first case of H5N1 bird flu infection in a child, who experienced mild symptoms and is recovering from their illness. The CDC affirmed that currently there was no evidence of person-to-person spread of H5N1 bird flu from this child to others, but said it will continue contact tracing. So far, there has been no person-to-person spread associated with any of the H5N1 bird flu cases reported in the US, the CDC said. Including this child\u2019s case, 55 human cases of H5 bird flu have now been reported in the country this year, with 29 in California, according to the CDC.", + "rank": 9, + "retrieved_at": "2026-07-14T23:47:48.877568+00:00", + "published_date": "2024-11-23T08:35:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.747945205479452, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4058090133015684, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "aa40969f82a94a2db80139aa596ea27a", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "canonical_url": "https://aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "domain": "aol.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - AOL", + "snippet": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. The report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk. Taken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. AOL Where to shop today's best deals: Kate Spade, Amazon, Walmart and more ----------------------------------------------------------------------", + "rank": 6, + "retrieved_at": "2026-07-14T23:47:45.453656+00:00", + "published_date": "2025-01-04T02:31:46+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3865187611673616, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "8eed09fd5a604b8dbe993eabbe3c5bd2", + "question_id": "q1", + "query_id": "a1f8506739b94422adb86ef903c801ab", + "engine": "tavily", + "url": "https://www.statnews.com/2024/04/25/h5n1-bird-flu-cows-outbreak-likely-widespread/", + "canonical_url": "https://statnews.com/2024/04/25/h5n1-bird-flu-cows-outbreak-likely-widespread", + "domain": "statnews.com", + "title": "Early tests of H5N1 prevalence in milk suggest U.S. bird flu outbreak in cows is widespread - STAT", + "snippet": "\u201cThe fact that you can go into a supermarket and 30% to 40% of those samples test positive, that suggests there\u2019s more of the virus around than is currently being recognized,\u201d said Richard Webby, an influenza virologist who has been analyzing the samples at St. Jude\u2019s Children\u2019s Research Hospital in Memphis, Tenn., where he heads the WHO Collaborating Center for Studies on the Ecology of Influenza in Animals. Trending Recommended Recommended Stories STAT Plus: Amid layoffs and a hit to earnings, Bristol\u2019s new CEO shares his vision for the future STAT Plus: Takeda is fourth big company to leave BIO since December advertisement STAT Plus: Taking stock of the frenzied push into autoimmune disease STAT Plus: Medicare official says breakthrough device reimbursement rule coming in early summer STAT \u201cBoth of these data \u2014 the milk data and the genetic data that shows this has been around since December of last year \u2014 suggests that the outbreak is probably much bigger than we know,\u201d said Angie Rasmussen, a virologist who studies emerging zoonotic pathogens at the Vaccine and Infectious Disease Organization at the University of Saskatchewan in Canada. Home Don't miss out Subscribe to STAT+ today, for the best life sciences journalism in the industry Early tests of H5N1 prevalence in milk suggest U.S. bird flu outbreak in cows is widespread By Megan Molteni April 25, 2024 Andrew Bowman, a veterinary epidemiologist at Ohio State University, had a hunch. Genetic testing found viral RNA in 58 samples, he told STAT. advertisement The researchers expect additional lab studies currently underway to show that those samples don\u2019t contain live virus with the capability to cause human infections, meaning that the risk of pasteurized milk to consumer health is still very low.", + "rank": 3, + "retrieved_at": "2026-07-14T23:47:48.877244+00:00", + "published_date": "2024-04-25T17:49:09+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.16712328767123286, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.38366885050625377, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "b596dcdd4ec24fb98c7d98f579737467", + "question_id": "q1", + "query_id": "32f012a261a347d7bc3c0411eaaf0119", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 3, + "retrieved_at": "2026-07-14T23:47:47.909701+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9726027397260274, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3833472304943419, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "3093bdacf38341f3b396e3c9ff3c247d", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 4, + "retrieved_at": "2026-07-14T23:47:46.533334+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3769877903513997, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "1adfc869938949a198a89494238d574a", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.yahoo.com/news/america-first-severe-case-bird-172433528.html", + "canonical_url": "https://yahoo.com/news/america-first-severe-case-bird-172433528.html", + "domain": "yahoo.com", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana - Yahoo! Voices", + "snippet": "There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 4, + "retrieved_at": "2026-07-14T23:47:45.453522+00:00", + "published_date": "2024-12-18T17:24:33+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37479600952948183, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "fe43b4b312704af989f3dbabed9162bd", + "question_id": "q1", + "query_id": "a1f8506739b94422adb86ef903c801ab", + "engine": "tavily", + "url": "https://www.riverbender.com/news/details.cfm?id=79638", + "canonical_url": "https://riverbender.com/news/details.cfm?id=79638", + "domain": "riverbender.com", + "title": "Illinois Department Of Agriculture Suspends Poultry Exhibition And Sale Events - RiverBender.com", + "snippet": "SPRINGFIELD, IL - The Illinois Department of Agriculture (IDOA) is issuing a 30-day suspension, effective Tuesday, February 11, 2025, on the exhibition or sale of poultry at swap meets, exhibitions, flea markets, and auction markets in response to the ongoing threat of H5N1 avian flu. Avian flu is caused by an influenza type A virus which can infect poultry (such as chickens, turkeys, pheasants, quail, domestic ducks, geese, and guinea fowl) and wild birds (especially waterfowl). \u201cThe Illinois Department of Public Health (IDPH) strongly supports this precautionary move by the Department of Agriculture to reduce the spread of the H5N1 avian flu virus,\u201d said IDPH Director Dr. Sameer Vohra.", + "rank": 4, + "retrieved_at": "2026-07-14T23:47:48.877367+00:00", + "published_date": "2025-02-12T17:14:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9698630136986301, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3705732578916021, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e536255589fe481dba07c36519504753", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.morningagclips.com/agriculture-department-tries-to-rehire-fired-workers-tied-to-bird-flu-response/", + "canonical_url": "https://morningagclips.com/agriculture-department-tries-to-rehire-fired-workers-tied-to-bird-flu-response", + "domain": "morningagclips.com", + "title": "Agriculture Department Tries to Rehire Fired Workers Tied to Bird Flu Response - Morning Ag Clips -", + "snippet": "In response to the recent spread of H5N1 in lactating dairy cows to California and the resulting human cases and the human cases in Washington resulting from an outbreak [\u2026] USDA Confirms HPAI in Backyard Non-Poultry Flock in Hawaii November 20, 2024 WASHINGTON \u2014 The United States Department of Agriculture\u2019s (USDA) Animal and Plant Health Inspection Service (APHIS) has confirmed the presence of highly pathogenic avian influenza (HPAI) in a non-commercial backyard flock (non-poultry) in Honolulu County, Hawaii. This is the first case of HPAI in domestic birds in Hawaii during this outbreak, which began in February [\u2026] APHIS: The Importance of Biosecurity in Protecting Animals from HPAI December 17, 2024 WASHINGTON \u2014 The United States Department of Agriculture\u2019s (USDA) Animal and Plant Health Inspection Service (APHIS) is reminding all animal caretakers of the critical importance of biosecurity in protecting animals from Highly Pathogenic Avian Influenza (HPAI) H5N1.", + "rank": 6, + "retrieved_at": "2026-07-14T23:47:47.542921+00:00", + "published_date": "2025-02-20T12:39:53+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9917808219178083, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.36026503871352, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "5dfc92d6a1da4f37b07f1e2c99479cd6", + "question_id": "q1", + "query_id": "32f012a261a347d7bc3c0411eaaf0119", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 7, + "retrieved_at": "2026-07-14T23:47:47.909906+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.358998553560793, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "a5fb4bc37c594f1d8dc15db55f3b7e6b", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 10, + "retrieved_at": "2026-07-14T23:47:45.454005+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35229600952948187, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "864d6823add443409ca5e2201c810146", + "question_id": "q1", + "query_id": "db27ef3f71f744efbb0299d0515d5e53", + "engine": "tavily", + "url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california/", + "canonical_url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california", + "domain": "nypost.com", + "title": "Human bird flu cases grow with 2 more confirmed in California - New York Post", + "snippet": "U.S. and California health officials confirmed two new cases of H5N1\u00a0bird flu\u00a0in dairy farm workers in the state on Friday, bringing the total of infected dairy workers in that state to six, and the total of human cases nationwide this year to 20. Health officials in the U.S. and California confirmed two more cases of H5N1 bird flu in dairy farm workers in the state on Friday. Six dairy workers in California have now contracted the virus, and the total number of human cases of bird flu nationwide is now at 20. California health officials said they expect additional cases to be identified among individuals who have regular contact with infected dairy cattle.", + "rank": 5, + "retrieved_at": "2026-07-14T23:47:46.533414+00:00", + "published_date": "2024-10-12T01:22:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6328767123287671, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.34893984514592025, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "61fa0b2430cf475f89c57ed1e8f74f64", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "canonical_url": "https://newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "domain": "newsweek.com", + "title": "Bird Flu Map Update as US Cases Rise to 14 - Newsweek", + "snippet": "In addition to being the first case not linked to contact with a sick animal, Missouri officials said that the case was the first detected using the state's flu surveillance system, rather than protocol specifically tailored to detect H5N1 cases related to the recent outbreak in livestock like dairy cows and poultry. The latest infection makes Missouri the fourth U.S. state with a human case this year. The following map created by Newsweek shows that all of this year's human H5N1 cases have been limited to Colorado, Texas, Michigan and Missouri: No cases of human-to-human transmission have ever been detected in the U.S. In humans, bird flu can range in severity from no symptoms to mild symptoms like eye infections or upper respiratory illness.", + "rank": 5, + "retrieved_at": "2026-07-14T23:47:45.453592+00:00", + "published_date": "2024-09-07T03:17:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.536986301369863, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3393508040500298, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "3fa74f7353fe4c6b926bb0f1a87bb7ff", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "canonical_url": "https://biospace.com/press-releases/hologic-to-contribute-to-h5n1-bird-flu-test-development-via-agreement-issued-by-cdc", + "domain": "biospace.com", + "title": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace", + "snippet": "Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC - BioSpace Hologic to Contribute to H5N1 Bird Flu Test Development via Agreement Issued by CDC H5N1 bird flu, also known as avian influenza A (H5N1), continues to spread among wild birds worldwide and is causing outbreaks in poultry and dairy cows in the U.S., with several recent cases identified in humans who work with these animals.1 Illness from the virus in the U.S. has been mild but severe illness in other countries has been associated with this virus.2 To prepare for if the current outbreak worsens, Hologic will work with the CDC to develop reagents that may be used for H5N1 testing.", + "rank": 9, + "retrieved_at": "2026-07-14T23:47:47.543104+00:00", + "published_date": "2024-12-18T14:15:15+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.33439745880484417, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e5c5a23d42be4152bad9e6cd8ec1ad2c", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:47:45.453431+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.273972602739726, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3330494341870161, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "bed96505d6ae49448bca6eeb911c3f46", + "question_id": "q1", + "query_id": "32f012a261a347d7bc3c0411eaaf0119", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 8, + "retrieved_at": "2026-07-14T23:47:47.909977+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.28767123287671237, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3227345145920191, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "dca474e9e98e4f1fba078c93d881cc0b", + "question_id": "q1", + "query_id": "abb5cd0fffc64ab8a0d798c6a7d70937", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:47:45.453904+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3148322414135398, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "f2fa674e9ade4e1fbc782dcf86f7602a", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "http://www.sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "canonical_url": "http://sfchronicle.com/bayarea/article/california-egg-prices-bird-flu-20008918.php", + "domain": "sfchronicle.com", + "title": "California egg shortage drives prices to nearly $9 per dozen - San Francisco Chronicle", + "snippet": "California egg prices jump 70% due to bird flu outbreaks A sign posted in store coolers at Whole Foods on Ocean Avenue in San Francisco reads, \u201cFor now, we\u2019re limiting purchases to 3 cartons per customer.\u201d Egg prices have spiked 70% amid a nationwide dairy shortage spurred by the outbreak of H5N1 avian flu, commonly known as bird flu. The price hike, highlighted in the U.S. Department of Agriculture\u2019s December egg markets report, owes largely to a series of highly pathogenic avian influenza outbreaks that have decimated the state\u2019s poultry flocks. With the U.S. egg-laying flock expected to dip below 300 million hens \u2014 its lowest point since the 2022 bird flu crisis \u2014 the nation\u2019s egg production is unlikely to return to normal levels until mid-2025, assuming no additional outbreaks occur.", + "rank": 5, + "retrieved_at": "2026-07-14T23:47:47.542859+00:00", + "published_date": "2024-12-31T19:22:57+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8520547945205479, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3121620011911852, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e8946ca571f840a984e30c51ed6afe0b", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "canonical_url": "https://feedstuffs.com/agribusiness-news/nmpf-annual-meeting-spotlights-dairy-vigilance-on-h5n1-advances-on-milk-pricing", + "domain": "feedstuffs.com", + "title": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing - Feedstuffs", + "snippet": "NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing NMPF annual meeting spotlights dairy vigilance on H5N1, advances on milk pricing U.S. dairy farmers are remaining resilient in the face of H5N1 influenza outbreaks while advancing in policy areas including nutrition and milk pricing, said NMPF Chairman Randy Mooney at the organization\u2019s annual meeting held in Phoenix Oct. 21-23. Underpinning the entire industry is USDA\u2019s plan for Federal Milk Marketing Order modernization, which is likely to resemble a proposal released in July that incorporated key NMPF principles and would be voted on by dairy farmers early next year. \u201cDairy farmers and their cooperatives have developed and embraced a robust biosecurity program through the National Dairy FARM Program,\u201d NMPF\u2019s Emily Yeiser Stepp said.", + "rank": 4, + "retrieved_at": "2026-07-14T23:47:47.542789+00:00", + "published_date": "2024-10-24T15:29:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6657534246575343, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.30103186420488387, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "2d1cd849761e4c5da6bf46e6f8a66906", + "question_id": "q1", + "query_id": "6df1f3de7f31431891f0ed3a54036bf5", + "engine": "tavily", + "url": "https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "canonical_url": "https://news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx", + "domain": "news-medical.net", + "title": "H5N1 bird flu is mutating fast and jumping to mammals - could the next pandemic be here? - News-Medical.Net", + "snippet": "Such rapid viral transmission started after the emergence of a new genotype of H5N1 viruses belonging to clade 2.3.4.4b, which infected wild birds from Europe to Africa, North America, South America, and the Antarctic. The article provides information on the acquisition of key adaptive mutations that enabled 2.3.4.4b H5N1 viruses to sustain mammal-to-mammal transmission. The authors have collected this information from three real-world settings: the 2022-2023 H5N1 outbreaks on European fur farms, the 2023 South American marine mammal-adapted virus, and the 2024 US dairy cattle outbreak. Genetic sequencing of H5N1 viruses from South American marine mammals identified the same known mammalian adaptations (PB2 D701N and Q591K) and other distinctive mutations absent in birds, supporting mammal-to-mammal transmission. Retrieved on September 25, 2024 from https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. . https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx. News-Medical, viewed 25 September 2024, https://www.news-medical.net/news/20240925/H5N1-bird-flu-is-mutating-fast-and-jumping-to-mammals-could-the-next-pandemic-be-here.aspx.", + "rank": 8, + "retrieved_at": "2026-07-14T23:47:47.543047+00:00", + "published_date": "2024-09-26T00:29:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.589041095890411, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.27461063132817154, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/documents.json b/data/runs_ab_with_history/q1/traj_20250217/documents.json new file mode 100644 index 0000000..4844b78 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/documents.json @@ -0,0 +1,890 @@ +[ + { + "id": "doc-c999bcecc65d4956afe67674bf26fa23", + "result_id": "c999bcecc65d4956afe67674bf26fa23", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:10:07.204838+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-c999bcecc65d4956afe67674bf26fa23-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-c999bcecc65d4956afe67674bf26fa23-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-c999bcecc65d4956afe67674bf26fa23-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-c999bcecc65d4956afe67674bf26fa23-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-7debfd7ca7bb41a2811a31b4c81aedef", + "result_id": "7debfd7ca7bb41a2811a31b4c81aedef", + "source_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:10:15.871533+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-16T23:59:31+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-7debfd7ca7bb41a2811a31b4c81aedef-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-c826058f703e4b328c14f0084c1d5cea", + "result_id": "c826058f703e4b328c14f0084c1d5cea", + "source_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:10:28.265010+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-15T05:59:40+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-c826058f703e4b328c14f0084c1d5cea-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-c826058f703e4b328c14f0084c1d5cea-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-c826058f703e4b328c14f0084c1d5cea-c2", + "chunk_index": 2, + "text": "\u2022 11,966 wild birds detected as of 2/11/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 159,307,978 poultry affected as of 2/14/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 968 dairy herds affected as of 2/12/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/11/2025", + "2/14/2025", + "2/12/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-efccf4a3c8a2479bb83267539ced8646", + "result_id": "efccf4a3c8a2479bb83267539ced8646", + "source_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:10:43.663594+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-07T11:32:27+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-efccf4a3c8a2479bb83267539ced8646-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-efccf4a3c8a2479bb83267539ced8646-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-efccf4a3c8a2479bb83267539ced8646-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-efccf4a3c8a2479bb83267539ced8646-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-efccf4a3c8a2479bb83267539ced8646-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-a91fce0340f74993b3ace471797f84fa", + "result_id": "a91fce0340f74993b3ace471797f84fa", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:10:46.440738+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-63ae00041a224378aa30a3ad43bb7b7d", + "result_id": "63ae00041a224378aa30a3ad43bb7b7d", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "fetched_at": "2026-07-14T23:10:56.987652+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "title": "Bird flu: First death from H5N1 strain reported in US", + "published_date": "2025-01-07T16:25:05+00:00", + "language": "en", + "page_count": null, + "char_count": 2872, + "token_count": 606, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-63ae00041a224378aa30a3ad43bb7b7d-c0", + "chunk_index": 0, + "text": "The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred.\nThe patient had been taken to hospital after contracting a major strain of bird flu, known as H5N1.\nLouisiana health department said they were over the age of 65, and had other underlying health conditions.\nIt said their public health investigation had not found evidence of person-to-person transmission, or any other cases.\nBird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. In very rare cases, it can also infect humans.\nThe state's health department added the person had contracted bird flu after being exposed to a personal flock of birds and wild birds.\n\"While the current public health risk for the general public remains low, people who work with birds, poultry or cows, or have recreational exposure to them, are at higher risk,\" it said.\nThere have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC).", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US", + "page_number": null, + "table_data": null, + "token_count": 228, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-63ae00041a224378aa30a3ad43bb7b7d-c1", + "chunk_index": 1, + "text": "Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Bird migration has resulted in outbreaks of the avian flu in domestic and wild birds.\nThe H5N1 virus is the major strain circulating among wild birds worldwide, and emerged in China in the late 1990s.\nAlthough infection of humans is very rare, it occurs via transmission from birds.\nAlmost all cases of infection in people have been associated with close contact to infected dead or live birds, or contaminated environments.\nSince 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.\nThere has been no sustained human-to-human transmission.\nLast month, the CDC said the Louisiana patient had been infected with the D1.1variant of the virus, which has recently been detected in North America.\nA 13-year-old girl in Canada was taken to hospital with the same D1.1 variant in November 2024, according to a paper published in The New England Journal of Medicine.\nIt is different to the B3.13 variant, which - during the past year - has been on the rise among cows in the US.\nIn September 2024, a person in Missouri recovered from bird flu after being treated in hospital.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > What is bird flu?", + "page_number": null, + "table_data": null, + "token_count": 263, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-63ae00041a224378aa30a3ad43bb7b7d-c2", + "chunk_index": 2, + "text": "According to the WHO, symptoms of a H5N1 infection include a cough, sore throat, fever (often over 38C), muscle aches and general feelings of malaise.\nPeople with the virus may also display other non-respiratory symptoms such as conjunctivitis.\nThe WHO added that H5N1 has also been detected in people without symptoms who had contact with infected animals or their environments.\nWhile the risk to humans is low, the constantly evolving virus is monitored for all changes, including the potential to become easily transmissible from person to person.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > Bird flu symptoms", + "page_number": null, + "table_data": null, + "token_count": 115, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T22:05:39+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-aa69aaaf8d8d441281a07c239c037281", + "result_id": "aa69aaaf8d8d441281a07c239c037281", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:11:14.237204+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-449e8f83e1404fd3b410fc900dc9e221", + "result_id": "449e8f83e1404fd3b410fc900dc9e221", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "fetched_at": "2026-07-14T23:11:27.065521+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN", + "published_date": "2024-12-18T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4156, + "token_count": 821, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-449e8f83e1404fd3b410fc900dc9e221-c0", + "chunk_index": 0, + "text": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States.\nThe agency said Wednesday that the person was exposed to sick and dead birds in backyard flocks; this is the first US bird flu case linked to a backyard flock.\n\u201cIt is believed that the patient that was reported by Louisiana had exposure to sick or dead birds on their property. These are not commercial poultry, and there was no exposure to dairy cows or their related products,\u201d said Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC.\nFederal officials declined to answer questions about the patient\u2019s symptoms or their current condition. They instead referred all inquiries about the case to the Louisiana Department of Health, which is leading the investigation.\nAccording to state officials, the patient is experiencing severe respiratory illness related to H5N1 and is hospitalized in critical condition. The person is older than 65 and has underlying medical conditions that increased their risk of flu complications, the Louisiana Department of Health said in an email to CNN.\nThis virus, D1.1, is the same type found in recent human cases in Canada and Washington state and detected in wild birds and poultry in the United States. It\u2019s different from B3.13, the type detected in dairy cows, some poultry outbreaks and other cases in humans across the United States.\nThe CDC said it\u2019s working on additional genomic sequencing of samples from the patient, who is from southwestern Louisiana, and the investigation into the patient\u2019s exposure is still underway.\nBird flu has been linked with severe human illness and death in other countries, but no person-to-person spread has been detected.\n\u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement.\nIn California, Gov. Gavin Newsom declared a state of emergency Wednesday over the continued spread of H5N1 bird flu in that state.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 420, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-449e8f83e1404fd3b410fc900dc9e221-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\nNewsom said the measure was necessary because, despite intense efforts to contain it, the virus had spread beyond the Central Valley to four dairies in the southern part of the state.\n\u201cThis proclamation is a targeted action to ensure government agencies have the resources and flexibility they need to respond quickly to this outbreak,\u201d he said in a news release. \u201cWhile the risk to the public remains low, we will continue to take all necessary steps to prevent the spread of this virus.\u201d\nThe emergency declaration will give state agencies greater flexibility with staffing and free up more funding for the response.\nOf the 61 confirmed human cases of bird flu in the US this year, 34 have been in California. Nearly all of those have been in dairy farm workers, according to the CDC.\nThe Louisiana case shows that precautions should be taken by people with backyard chicken flocks, hunters and other bird enthusiasts, the CDC said.\n\u201cThe cases across the US are a constellation of spillovers,\u201d said Dr. Rebecca Christofferson, a virologist at Louisiana State University\u2019s School of Veterinary Medicine. Experts still don\u2019t understand exactly how these spillovers are happening and the specific factors that increase a person\u2019s risk.\n\u201cIt\u2019s just kind of a black box at the moment that a lot of people are trying to answer these questions on,\u201d Christofferson said.\nThe CDC says the best approach is to avoid exposure. Infected birds can shed viruses in their saliva, mucus and feces, and other animals may shed them in their respiratory secretions and bodily fluids, including unpasteurized milk from cows.\n\u201cPeople who work with or have recreational exposure to infected animals are at higher risk of infection, and it\u2019s extremely important that they follow CDC recommended precautions when around infected or potentially infected animals, a message that we will continue to magnify given recent cases,\u201d Daskalakis said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 401, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-09T23:57:07+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "doc-970f74dceb574b14a7b0fe450b6c8773", + "result_id": "970f74dceb574b14a7b0fe450b6c8773", + "source_url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:11:33.413442+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "title": "Outbreak of Highly Pathogenic Avian Influenza ...", + "published_date": "2024-05-31T00:00:00", + "language": "en", + "page_count": null, + "char_count": 28132, + "token_count": 6425, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c0", + "chunk_index": 0, + "text": "Weekly / May 30, 2024 / 73(21);501\u2013505\nOn May 24, 2024, this report was posted online as an MMWR Early Release.\nShikha Garg, MD1; Carrie Reed, DSc1; C. Todd Davis, PhD 1; Timothy M. Uyeki, MD1; Casey Barton Behravesh, DVM, DrPH2; Krista Kniss, MPH1; Alicia Budd, MPH1; Matthew Biggerstaff, ScD1; Jennifer Adjemian, PhD3; John R. Barnes, PhD1; Marie K. Kirby, PhD1; Colin Basler, DVM2; Christine M. Szablewski, DVM1; Malia Richmond-Crum, MPH1; Erin Burns, MA1; Brandi Limbago, PhD4; Demetre C. Daskalakis, MD4; Kimberly Armstrong, PhD5; David Boucher, PhD5; Tom T. Shimabukuro, MD1; Michael A. Jhung, MD1; Sonja J. Olsen, PhD1; Vivien Dugan, PhD1 (View author affiliations)", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024", + "page_number": null, + "table_data": null, + "token_count": 248, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c1", + "chunk_index": 1, + "text": "What is already known about this topic?\nInfluenza A(H5) virus infection was detected in two U.S. farm workers during a multistate outbreak of A(H5N1) viruses in dairy cows; these are the first known instances of presumed cow-to-human transmission of avian influenza A viruses.\nWhat is added by this report?\nApproximately 350 exposed farm workers are being monitored; one of the two cases was identified via daily, active monitoring. Surveillance has identified no unusual influenza activity trends in the United States. A(H5) candidate vaccine viruses are available, and laboratory analyses indicate that A(H5N1) viruses circulating in cows and other animals are susceptible to FDA-approved antivirals.\nWhat are the implications for public health practice?\nCurrent risk to the U.S. public from A(H5N1) viruses is low; however, persons exposed to infected animals or contaminated materials, including raw cow\u2019s milk, are at higher risk and should take precautions and self-monitor for illness. A One Health (human, animal, and environmental) approach is critical to preparing for circumstances that could increase risk to human health.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Summary", + "page_number": null, + "table_data": null, + "token_count": 231, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c2", + "chunk_index": 2, + "text": "On April 1, 2024, the Texas Department of State Health Services reported that a dairy farm worker had tested positive for highly pathogenic avian influenza A(H5N1) virus after exposure to presumably infected dairy cattle; CDC confirmed these laboratory findings. A(H5N1) viruses were found in high concentrations in unpasteurized (raw) milk from infected cows. CDC is collaborating with the U.S. Department of Agriculture, the Food and Drug Administration, the Administration for Strategic Preparedness and Response, the Health Resources and Services Administration, the National Institute of Allergy and Infectious Diseases, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. Activities include monitoring of exposed persons, conducting syndromic and laboratory surveillance, planning epidemiologic investigations, and evaluating medical countermeasures. As of May 22, 2024, approximately 350 farm workers with exposure to dairy cattle or infected raw cow\u2019s milk had been monitored. These monitoring efforts identified a second human A(H5) case with conjunctivitis in Michigan, which was reported on May 22, 2024. CDC considers the current risk to the U.S. public from A(H5N1) viruses to be low; however, persons with exposure to infected animals or contaminated materials, including raw cow\u2019s milk, are at higher risk for A(H5N1) virus infection and should take recommended precautions, including using recommended personal protective equipment, self-monitoring for illness symptoms, and, if they are symptomatic, seeking prompt medical evaluation for influenza testing and antiviral treatment if indicated. Pasteurization inactivates A(H5N1) viruses, and the commercial milk supply is safe for consumption; however, all persons should avoid consuming raw milk or products produced from raw milk. Importantly, the risk to the public might change based on whether A(H5N1) viruses acquire genetic changes that increase their transmissibility to and among humans, which could increase the risk of an influenza pandemic.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Abstract", + "page_number": null, + "table_data": null, + "token_count": 424, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c3", + "chunk_index": 3, + "text": "On April 1, 2024, the Texas Department of State Health Services reported, after confirmation by CDC, that a commercial dairy farm worker tested positive by real-time reverse transcription\u2013polymerase chain reaction (RT-PCR) for highly pathogenic avian influenza (HPAI) A(H5N1) virus infection after exposure to dairy cattle presumed to be infected with A(H5N1) viruses*,\u2020; CDC confirmed laboratory findings through RT-PCR and sequencing (1). The patient only experienced conjunctivitis without other signs or symptoms, was instructed to isolate, was treated with oseltamivir, and recovered. No illness was identified among the patient\u2019s household members, all of whom received oseltamivir postexposure prophylaxis. One week earlier, the U.S. Department of Agriculture had reported a multistate outbreak of A(H5N1) viruses in dairy cows.\u00a7 A(H5N1) viruses were also detected in barn cats, birds, and other animals (e.g., one raccoon and two opossums) that lived in and around human habitations and that died on affected farms.\u00b6 Genetic sequencing of the A(H5N1) virus from infected cattle and the farm worker** identified clade 2.3.4.4b; this clade has been detected in U.S. wild birds, commercial poultry, backyard flocks, and other animals since January 2022 (2). On May 22, 2024, the Michigan Department of Health and Human Services reported an A(H5) case in a dairy farm worker on a farm confirmed to have A(H5N1) virus in cattle; this person was enrolled in an active text-based monitoring program and reported only eye symptoms.\u2020\u2020 The investigation into this second case is ongoing. These two cases are the first known instances of presumed cow-to-human spread of an avian influenza A virus.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Identification of Two Human Cases of Influenza A(H5) Virus Infection", + "page_number": null, + "table_data": null, + "token_count": 394, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c4", + "chunk_index": 4, + "text": "Although first reported in March 2024, A(H5N1) virus infection of U.S. dairy cows might have been occurring since December 2023, according to preliminary data (3). As of May 22, 2024, infected dairy cows had been identified in 52 dairy cattle herds in nine states\u00a7\u00a7 (Colorado, Idaho, Kansas, Michigan, New Mexico, North Carolina, Ohio, South Dakota, and Texas). Signs in cattle were nonspecific and included decreased milk production, reduced rumination, and thickened (colostrum-like) milk consistency; some cows also had clear nasal discharge. High A(H5N1) virus levels have also been found in unpasteurized (raw) milk from infected cows(4).", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Influenza A(H5N1) Viruses in U.S. Dairy Cattle", + "page_number": null, + "table_data": null, + "token_count": 155, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c5", + "chunk_index": 5, + "text": "From 1997 through late April 2024, a total of 909 sporadic human A(H5N1) cases were reported worldwide from 23 countries; 52% of human cases have been fatal (2); of the 909 cases, 26 human A(H5N1) cases have been reported from eight countries, including seven deaths, since 2022. Since these numbers were last updated, two additional human A(H5) cases have been detected including the case from Michigan and one case in Australia. Nearly all reported human A(H5N1) cases had reported recent exposure to poultry. In the United States, three human A(H5) cases have been identified to date; all patients had mild illness, were not hospitalized, and fully recovered. The first occurred in April 2022 in a person from Colorado with direct exposure to infected poultry, who only reported fatigue,\u00b6\u00b6 and the second and third occurred in dairy farm workers with conjunctivitis referenced in this report.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Human Cases of Influenza A(H5N1) Worldwide", + "page_number": null, + "table_data": null, + "token_count": 204, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c6", + "chunk_index": 6, + "text": "Activities implemented using a One Health*** approach to respond to this outbreak\u2020\u2020\u2020 include monitoring for infections in exposed persons, conducting syndromic and laboratory surveillance, planning for epidemiologic investigations, and assessing performance of existing medical countermeasures including diagnostic tests, vaccines, and therapeutics. To assess A(H5N1) virus pathogenesis, severity, and transmissibility in an animal model of infection, CDC is also conducting laboratory experiments in ferrets.\nThis activity was reviewed by CDC, deemed not research, and was conducted consistent with applicable federal law and CDC policy.\u00a7\u00a7\u00a7 Ferret studies were approved by the CDC Institutional Animal Care and Use Committee.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > U.S. Outbreak Response Activities", + "page_number": null, + "table_data": null, + "token_count": 132, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c7", + "chunk_index": 7, + "text": "In 2014, CDC began monitoring persons exposed to infected poultry when HPAI A(H5) viruses were first detected in poultry and wild birds in North America (5). Recommendations are to monitor persons exposed to infected birds, poultry, or other animals for 10 days after their last exposure and to test symptomatic persons for influenza A viruses by RT-PCR assay using H5-specific primers and probes, in coordination with state or local health departments (6).\nDuring February 2022\u2013May 2024, approximately 9,400 persons in 52 jurisdictions have been monitored. As of May 22, 2024, approximately 350 farm workers had been or were currently being monitored for illness after exposure to infected cows or infected raw cow\u2019s milk; the number of persons monitored continues to increase; data are updated weekly.\u00b6\u00b6\u00b6 Monitoring is performed either through direct daily contact by state or local health departments or by providing persons with information on how to self-monitor and where to seek testing and possible treatment should they experience symptoms. The most recent human A(H5) case was identified through active, daily monitoring of exposed farm workers using a text-based illness monitoring program in Michigan (7).", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Monitoring of Persons Exposed to Influenza A(H5) Viruses", + "page_number": null, + "table_data": null, + "token_count": 242, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c8", + "chunk_index": 8, + "text": "CDC\u2019s influenza surveillance systems**** collect information to track trends in influenza activity and detect changes in circulating influenza viruses, including detection of novel influenza A viruses year-round. Human cases of novel influenza A virus infection have been nationally notifiable since 2007; every identified case is investigated and reported to CDC.\nThrough approximately 300 clinical laboratories, CDC monitors changes in the percentage of influenza tests with positive results in clinical settings. The National Syndromic Surveillance Program collects data from emergency departments and other health care settings, facilitating the detection of unusual trends in influenza diagnoses, including in jurisdictions where A(H5N1) viruses have been identified in animals.\nCDC\u2019s National Wastewater Surveillance System\u2020\u2020\u2020\u2020 complements other existing human influenza surveillance systems in monitoring influenza trends. These monitoring methods detect influenza A viruses but do not distinguish subtypes of influenza A, meaning that current wastewater testing can detect A(H5N1) viruses but cannot distinguish them from other influenza A viruses or determine the source of the influenza A viruses (e.g., humans versus animals or animal products). Together, these systems provide visibility into U.S. influenza activity. As of May 18, 2024, no indicators of unusual human influenza activity, including A(H5N1 virus), had been detected in humans through these systems.\nCDC\u2019s molecular diagnostic assays are used at more than 100 public health laboratories in all 50 states and other U.S. jurisdictions to detect seasonal and novel influenza A viruses; nine centers also perform genetic sequencing for virus characterization. Statistical methods are used to determine the number of specimens needed to have 95% confidence that at least one novel influenza A virus among all influenza positive specimens per week would be detected given varying influenza prevalence; the number varies by timing during the season. Each state\u2019s contribution is proportional to its population and has been set as a national weekly goal for public health laboratory testing.\u00a7\u00a7\u00a7\u00a7", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > National Surveillance Activities", + "page_number": null, + "table_data": null, + "token_count": 382, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c9", + "chunk_index": 9, + "text": "Multiple efforts are underway to enhance influenza surveillance activities through the spring and summer as part of this response. CDC is working with commercial laboratories to increase submission of influenza-positive test specimens to public health laboratories to increase the number of specimens available for virus subtyping. Approximately 140,000 of these H5-specific tests are already prepositioned at the state and local level, and another 750,000 tests are available for distribution if needed. CDC also continues to collaborate with manufacturers of commercial diagnostic tests with the goal of having an A(H5N1) test that is widely available if needed. Surveillance for laboratory-confirmed, influenza-associated hospitalizations will also continue during the spring and summer through the Influenza Hospitalization Surveillance Network (FluSurv-NET), which typically conducts surveillance during October 1\u2013April 30 of each influenza season. As well, CDC is working with state and local public health partners, with outreach to providers and clinics, to increase awareness about A(H5N1) so that influenza is considered in patients with conjunctivitis or respiratory illness after exposures, including agricultural fair attendance, that might increase the risk of novel influenza A virus infection.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Spring and Summer Activities", + "page_number": null, + "table_data": null, + "token_count": 236, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c10", + "chunk_index": 10, + "text": "As a World Health Organization Collaborating Center, and in partnership with the Administration for Strategic Preparedness and Response (ASPR), CDC regularly develops novel influenza A candidate vaccine viruses (CVVs) for pandemic preparedness. Antigenic characterization of the A(H5N1) virus isolated from the Texas farm worker (A/Texas/37/2024) with ferret antisera produced against existing CVVs confirmed two clade 2.3.4.4b A(H5) CVVs have good cross-reactivity to this virus. Under the National Pre-Pandemic Influenza Vaccine Stockpile (NPIVS) program, ASPR has shared these CVVs with Food and Drug Administration (FDA)\u2013licensed pandemic influenza vaccine manufacturers and has completed initial production of bulk antigen. ASPR is also supporting clinical evaluation of safety and immunogenicity of vaccines using antigen manufactured from one of these CVVs, influenza A/Astrakhan/3212/2020\u2013like virus vaccine, in combination with different adjuvants that are stockpiled under the NPIVS. The clinical study (NCT05874713)\u00b6\u00b6\u00b6\u00b6 testing cell-based antigen combined with MF59 adjuvant, according to the AUDENZ-licensed manufacturing process, has completed enrollment. The egg-based antigen, produced according to the Q-PAN-licensed process, combined with AS03 adjuvant clinical study (NCT05975840)***** is also fully enrolled. ASPR is planning additional clinical studies for combining egg-based antigen with both AS03 and MF59 adjuvants with enrollment expected to start in late summer 2024. If needed, and dependent upon FDA review and regulatory action allowing use, these vaccines could be the first allotment of vaccines used while additional manufacturing, starting with the stockpiled antigens and adjuvants, ramps up for full-scale production.\nFour FDA-approved antiviral drugs (baloxavir marboxil, oseltamivir, peramivir, and zanamivir) are recommended for influenza treatment in the United States.\u2020\u2020\u2020\u2020\u2020 CDC has conducted phenotypic testing of antiviral susceptibility and found that the A(H5N1) virus isolated from the Texas farm worker is susceptible to baloxavir marboxil (Xofluza, Genentech) and to neuraminidase inhibitors, including oseltamivir (generic or Tamiflu, Genentech). Oral oseltamivir treatment is recommended for persons with confirmed or suspected A(H5N1) virus infection.\u00a7\u00a7\u00a7\u00a7\u00a7 Oral oseltamivir is also recommended for postexposure prophylaxis (using twice daily treatment dosing) of close contacts (e.g., household members) of a confirmed A(H5N1) case. Observational studies of patients infected with older and different clades of A(H5N1) viruses, (i.e., not the current clade 2.3.4.4b viruses identified in the United States) have found that starting oseltamivir treatment within 2 days of symptom onset was significantly associated with survival benefit compared with no treatment or later initiation of oseltamivir treatment after symptom onset (8,9). All four antivirals are available in the Strategic National Stockpile and in many state-managed stockpiles, both of which can be deployed to assist with supply chain constraints should they arise.\nThe National Institute of Allergy and Infectious Diseases (NIAID) continues to investigate the efficacy of novel direct-acting antiviral medications and host-targeted molecules as well as broadly neutralizing antibodies and more targeted monoclonal antibodies aimed at A(H5N1) viral-specific surface antigens that could protect from death or severe respiratory disease.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Medical Countermeasures", + "page_number": null, + "table_data": null, + "token_count": 784, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c11", + "chunk_index": 11, + "text": "To better ascertain and define the risk to humans, CDC is working with states to plan epidemiologic investigations in collaboration with affected farms and health and agricultural partners at local, state, and federal levels. Important public health questions might be addressed through in-depth studies with specimen collection and surveys (Box). CDC conducted a similar study in response to poultry outbreaks of A(H5N1) in 2022 (10).", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Investigation and Findings > Epidemiologic Investigations", + "page_number": null, + "table_data": null, + "token_count": 82, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c12", + "chunk_index": 12, + "text": "CDC is collaborating with the U.S. Department of Agriculture, FDA, ASPR, the Health Resources and Services Administration, NIAID, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. Substantial challenges to identifying and interviewing persons exposed to cattle infected with A(H5N1) viruses for illness monitoring or epidemiologic studies exist. Workers exposed to A(H5N1) viruses might represent socioeconomically vulnerable, or otherwise hard-to-reach populations, including those who live in rural or remote areas; or they might be migrant, transient, or undocumented workers. Further, persons might not be aware of the risks or potential signs and symptoms associated with exposure; dairy farmers and the dairy industry have not previously been major partners in outreach about avian influenza. Recommendations for worker protection have been recently updated\u00b6\u00b6\u00b6\u00b6\u00b6 and disseminated.\nOnce exposed persons are identified, defining exposure periods is also difficult. A(H5N1) disease is widespread in poultry, and mortality is high. Rapid depopulation of affected flocks facilitates monitoring of exposed workers because it creates a finite 10-day monitoring window after exposure. In contrast, illness in cows can last for 2\u20134 weeks, and the duration of infectious virus shedding in cows is unknown. In addition, A(H5N1) virus infection has been identified in some cows without signs of illness; thus, some workers might be unaware of their exposure. Recent testing did not detect live, infectious A(H5N1) viruses in retail dairy samples; however, identification of A(H5N1) viral fragments in approximately one in five retail milk samples from across the country (4) suggests that A(H5N1) virus infections of cattle might be widespread. Therefore, monitoring of exposed or potentially exposed persons and animals might be protracted and resource-intensive.\nInterpretation of surveillance data can be challenging given that A(H5N1) virus infections might manifest signs and symptoms similar to those associated with infections caused by other pathogens. During periods of low U.S. influenza virus circulation (e.g., spring and summer), syndromic and wastewater surveillance might more readily identify unusual signals in influenza-related symptoms or activity. However, using these systems to detect novel influenza A virus infection trends in the fall and winter, once seasonal influenza A virus circulation increases, will likely be complicated. Interpretation of wastewater data are further limited by the inability to distinguish between human and animal source material.\nCurrently circulating A(H5N1) viruses do not have the ability to easily bind to receptors that are most prevalent in the human upper respiratory tract and therefore are not easily transmissible to and between humans (2). However, because of the widespread global prevalence of A(H5N1) viruses in birds and other animals, continued sporadic human infections are anticipated. Further, if a novel influenza A virus acquires the ability to infect and be transmitted easily between persons in a sustained manner, an influenza pandemic could occur. Thus, investigation of every novel influenza A virus case in humans and comprehensive worldwide surveillance is critical to public health preparedness efforts.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Discussion", + "page_number": null, + "table_data": null, + "token_count": 642, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c13", + "chunk_index": 13, + "text": "CDC considers the current health risk to the U.S. public from A(H5N1) viruses to be low. However, persons who have job-related or recreational exposure to infected birds, poultry, dairy cattle, or other infected animals or contaminated materials, including raw cow\u2019s milk, are at increased risk for infection; these persons should take appropriate precautions, including using recommended personal protective equipment, self-monitoring for illness symptoms (6), and seeking prompt medical evaluation if they are symptomatic, including influenza testing and antiviral treatment if indicated. FDA has confirmed that pasteurization inactivates A(H5N1) viruses, and that the commercial milk supply is safe for consumption (4); however, all persons should avoid consuming raw milk or products produced from raw milk. A coordinated and comprehensive One Health response to this ongoing outbreak of A(H5N1) virus infections in dairy cows, poultry, and other animals is needed to identify and prepare for any developments that indicate an increase in the risk to public health.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Discussion > Implications for Public Health Practice", + "page_number": null, + "table_data": null, + "token_count": 205, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c14", + "chunk_index": 14, + "text": "Haley C. Boswell, Ramona Byrkit, Ann Carpenter, Phillippa Chadd, Kevin Chatham-Stephens, Anton Chesnokov, Peter Daly, Juan A. De La Cruz; Han Di, Sascha R. Ellington, Julia C. Frederick, Eric Gogstad, William Gregg, Lisa A. Grohskopf, Larisa Gubareva, Norman Hassell, Mary Hill, Margaret Honein, Yunho Jang, Douglas E. Jordan, Aaron Kite-Powell, Rebecca Kondor, Kristine Lacek, Brian Lee, Brianna Lewis, Jimma Liddell, Rochelle Medford, Alexandra Mellis, Megin Nichols, Elizabeth Pusch, Katie Reinhart, Laird J. Ruth, Rebecca Sabo, Michael Sheppard, George Sims, Sean Stapleton, James Stevens, Jonathan Yoder, Natalie M. Wendling, CDC; Michael Ison, National Institutes of Health.\nCorresponding author: Shikha Garg, sgarg1@cdc.gov.\n1Influenza Division, National Center for Immunization and Respiratory Diseases, CDC; 2One Health Office, National Center for Emerging and Zoonotic Infectious Diseases, CDC; 3Office of Public Health Data, Surveillance, and Technology, CDC; 4National Center for Immunization and Respiratory Diseases, CDC; 5Administration for Strategic Preparedness and Response, Washington, DC.\nAll authors have completed and submitted the International Committee of Medical Journal Editors form for disclosure of potential conflicts of interest. No potential conflicts of interest were disclosed.\n\u2020 https://emergency.cdc.gov/han/2024/han00506.asp\n\u00b6 https://wahis.woah.org/#/in-review/4451?fromPage=event-dashboard-url\n** https://www.cdc.gov/flu/avianflu/spotlights/2023-2024/h5n1-analysis-texas.htm\n\u2020\u2020 https://www.michigan.gov/mdhhs/inside-mdhhs/newsroom/2024/05/22/influenza-a-detection\n\u00a7\u00a7 https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/livestock\n\u00b6\u00b6 https://www.cdc.gov/media/releases/2022/s0428-avian-flu.html\n*** https://www.cdc.gov/one-health/about/index.html\n\u2020\u2020\u2020 https://www.cdc.gov/flu/avianflu/what-cdc-doing-h5n1.htm\n\u00a7\u00a7\u00a7 45 C.F.R. part 46.102(l)(2), 21 C.F.R. part 56; 42 U.S.C. Sect. 241(d); 5 U.S.C. Sect. 552a; 44 U.S.C. Sect. 3501 et seq.\n\u00b6\u00b6\u00b6 https://www.cdc.gov/flu/avianflu/h5-monitoring.html\n**** https://www.cdc.gov/flu/weekly/index.htm\n\u2020\u2020\u2020\u2020 https://www.cdc.gov/nwss/wastewater-surveillance/Flu-A-data.html\n\u00a7\u00a7\u00a7\u00a7 https://www.aphl.org/aboutAPHL/publications/Documents/ID-Influenza-Right-Size-Roadmap-Edition2.pdf\n\u00b6\u00b6\u00b6\u00b6 https://www.clinicaltrials.gov/study/NCT05874713?term=NCT05874713&rank=1\n***** https://www.clinicaltrials.gov/study/NCT05975840?term=NCT05975840&rank=1\n\u2020\u2020\u2020\u2020\u2020 https://www.cdc.gov/flu/professionals/antivirals/index.htm\n\u00a7\u00a7\u00a7\u00a7\u00a7 https://www.cdc.gov/flu/avianflu/novel-av-treatment-guidance.htm\n\u00b6\u00b6\u00b6\u00b6\u00b6 https://www.cdc.gov/flu/avianflu/h5/worker-protection-ppe.htm", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > Discussion > Acknowledgments", + "page_number": null, + "table_data": null, + "token_count": 834, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c15", + "chunk_index": 15, + "text": "\u2022 Uyeki TM, Milton S, Abdul Hamid C, et al. Highly pathogenic avian influenza A(H5N1) virus infection in a dairy farm worker. N Engl J Med 2024. Epub May 3, 2024. https://doi.org/10.1056/nejmc2405371 PMID:38700506\n\u2022 CDC. Influenza (flu): technical report: highly pathogenic avian influenza A(H5N1) viruses. Atlanta, GA: US Department of Health and Human Services, CDC; 2024. https://www.cdc.gov/flu/avianflu/spotlights/2023-2024/h5n1-technical-report_april-2024.htm\n\u2022 Nguyen T, Hutter C, Markin A, et al. Emergence and interstate spread of highly pathogenic avian influenza A(H5N1) in dairy cattle. bioRxiv [Preprint posted online May 1, 2024]. https://doi.org/10.1101/2024.05.01.591751\n\u2022 Food and Drug Administration. Updates of highly pathogenic avian influenza (HPAI). Silver Spring, MD: US Department of Health and Human Services, Food and Drug Administration; 2024. Accessed May 7, 20204. https://www.fda.gov/food/alerts-advisories-safety-information/updates-highly-pathogenic-avian-influenza-hpai\n\u2022 Olsen SJ, Rooney JA, Blanton L, et al. Estimating risk to responders exposed to avian influenza A H5 and H7 viruses in poultry, United States, 2014\u20132017. Emerg Infect Dis 2019;25:1011\u20134. https://doi.org/10.3201/eid2505.181253 PMID:30741630\n\u2022 CDC. Influenza (flu): highly pathogenic avian influenza A(H5N1) virus in animals: interim recommendations for prevention, monitoring, and public health investigations. Atlanta, GA: US Department of Health and Human Services, CDC; 2024. https://www.cdc.gov/flu/avianflu/hpai/hpai-interim-recommendations.html\n\u2022 Stewart RJ, Rossow J, Eckel S, et al. Text-based illness monitoring for detection of novel influenza A virus infections during an influenza A (H3N2)v virus outbreak in Michigan, 2016: surveillance and survey. JMIR Public Health Surveill 2019;5:e10842. https://doi.org/10.2196/10842 PMID:31025948\n\u2022 Kandun IN, Tresnaningsih E, Purba WH, et al. Factors associated with case fatality of human H5N1 virus infections in Indonesia: a case series. Lancet 2008;372:744\u20139. https://doi.org/10.1016/s0140-6736(08)61125-3 PMID:18706688\n\u2022 Adisasmito W, Chan PK, Lee N, et al. Effectiveness of antiviral treatment in human influenza A(H5N1) infections: analysis of a global patient registry. J Infect Dis 2010;202:1154\u201360 https://doi.org/10.1086/656316 PMID:20831384\n\u2022 Kniss K, Sumner KM, Tastad KJ, et al. Risk for infection in humans after exposure to birds infected with highly pathogenic avian influenza A(H5N1) virus, United States, 2022. Emerg Infect Dis 2023;29:1215\u20139. https://doi.org/10.3201/eid2906.230103 PMID:37095080", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > References", + "page_number": null, + "table_data": null, + "token_count": 790, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c16", + "chunk_index": 16, + "text": "1. Is there evidence of influenza A(H5N1) virus infections in human populations?\n2. If human illness is identified, what is the clinical spectrum of illness?\n3. What are the rates of asymptomatic human infection with influenza A(H5N1) virus?\n4. What are the routes of exposure to influenza A(H5N1) virus on farms and dairies, and what is the risk for zoonotic transmission?\n5. What behaviors, including use of personal protective equipment, are associated with human infection or protection from infection with influenza A(H5N1) virus?\nSuggested citation for this article: Garg S, Reed C, Davis CT, et al. Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024. MMWR Morb Mortal Wkly Rep 2024;73:501\u2013505. DOI: http://dx.doi.org/10.15585/mmwr.mm7321e1.\nMMWR and Morbidity and Mortality Weekly Report are service marks of the U.S. Department of Health and Human Services. Use of trade names and commercial sources is for identification only and does not imply endorsement by the U.S. Department of Health and Human Services. References to non-CDC sites on the Internet are provided as a service to MMWR readers and do not constitute or imply endorsement of these organizations or their programs by CDC or the U.S. Department of Health and Human Services. CDC is not responsible for the content of pages found at these sites. URL addresses listed in MMWR were current as of the date of publication.\nAll HTML versions of MMWR articles are generated from final proofs through an automated process. This conversion might result in character translation or format errors in the HTML version. Users are referred to the electronic PDF version (https://www.cdc.gov/mmwr) and/or the original MMWR paper copy for printable versions of official text, figures, and tables.\nQuestions or messages regarding errors in formatting should be addressed to mmwrq@cdc.gov.", + "chunk_type": "prose", + "heading": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 > References > BOX. Key epidemiologic questions to define the risk of highly pathogenic avian influenza A(H5N1) viruses to humans and to guide evidence-based recommendations \u2014 United States, 2024", + "page_number": null, + "table_data": null, + "token_count": 440, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "May 30, 2024", + "May 24, 2024", + "April 1, 2024", + "May 22, 2024", + "May 18, 2024", + "May 3, 2024", + "May 1, 2024", + "May 7, 2020" + ], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T04:34:12+00:00", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/filtered.json b/data/runs_ab_with_history/q1/traj_20250217/filtered.json new file mode 100644 index 0000000..4cfcbb9 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/filtered.json @@ -0,0 +1,235 @@ +[ + { + "result_id": "c999bcecc65d4956afe67674bf26fa23", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "7debfd7ca7bb41a2811a31b4c81aedef", + "question_id": "q1", + "url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-16T23:59:31+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "c826058f703e4b328c14f0084c1d5cea", + "question_id": "q1", + "url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-15T05:59:40+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "efccf4a3c8a2479bb83267539ced8646", + "question_id": "q1", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "a91fce0340f74993b3ace471797f84fa", + "question_id": "q1", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "63ae00041a224378aa30a3ad43bb7b7d", + "question_id": "q1", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "relevance_score": 0.9, + "credibility_score": 0.8, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "aa69aaaf8d8d441281a07c239c037281", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "449e8f83e1404fd3b410fc900dc9e221", + "question_id": "q1", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "official_source" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "970f74dceb574b14a7b0fe450b6c8773", + "question_id": "q1", + "url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "canonical_url": "https://cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "domain": "cdc.gov", + "title": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 | MMWR - CDC", + "snippet": "CDC is collaborating with the U.S. Department of Agriculture, the Food and Drug Administration, the Administration for Strategic Preparedness and Response, the Health Resources and Services Administration, the National Institute of Allergy and Infectious Diseases, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. One week earlier, the U.S. Department of Agriculture had reported a multistate outbreak of A(H5N1) viruses in dairy cows.\u00a7 A(H5N1) viruses were also detected in barn cats, birds, and other animals (e.g., one raccoon and two opossums) that lived in and around human habitations and that died on affected farms.\u00b6 Genetic sequencing of the A(H5N1) virus from infected cattle and the farm worker** identified clade 2.3.4.4b; this clade has been detected in U.S. wild birds, commercial poultry, backyard flocks, and other animals since January 2022 (2). Top Discussion CDC is collaborating with the U.S. Department of Agriculture, FDA, ASPR, the Health Resources and Services Administration, NIAID, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. CDC considers the current risk to the U.S. public from A(H5N1) viruses to be low; however, persons with exposure to infected animals or contaminated materials, including raw cow\u2019s milk, are at higher risk for A(H5N1) virus infection and should take recommended precautions, including using recommended personal protective equipment, self-monitoring for illness symptoms, and, if they are symptomatic, seeking prompt medical evaluation for influenza testing and antiviral treatment if indicated. Top Corresponding author: Shikha Garg, sgarg1@cdc.gov. Top 1Influenza Division, National Center for Immunization and Respiratory Diseases, CDC; 2One Health Office, National Center for Emerging and Zoonotic Infectious Diseases, CDC; 3Office of Public Health Data, Surveillance, and Technology, CDC; 4National Center for Immunization and Respiratory Diseases, CDC; 5Administration for Strategic Preparedness and Response, Washington, DC. ", + "published_date": "2024-05-30T18:57:54+00:00", + "file_type": null, + "relevance_score": 0.391304347826087, + "credibility_score": 1.0, + "final_score": 0.619276950565813, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "official_domain", + "has_publication_date", + "official_recall_guarantee" + ], + "extraction_priority": 9, + "extraction_mode": "html", + "expected_value": "medium", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/forecast.json b/data/runs_ab_with_history/q1/traj_20250217/forecast.json new file mode 100644 index 0000000..bf7596d --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/forecast.json @@ -0,0 +1,160 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9330758586890564, + "100-150": 0.048265595551276644, + "150-200": 0.01301336745817357, + "200+": 0.005645178301493643 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9330758586890564, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 0.048265595551276644, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 0.01301336745817357, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 0.005645178301493643, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.85, + 0.1, + 0.03, + 0.02 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in cases from December 2024 to January 2025 suggests ongoing transmission.", + "Past outbreaks of H5N1 have seen rapid increases in cases when transmission is not contained." + ], + "drivers_down": [ + "The cumulative number of cases has only reached 9 as of January 2025, suggesting limited spread.", + "H5N1 typically transmits less efficiently between humans compared to other influenza strains, which could limit case numbers.", + "Public health measures and awareness could limit further spread." + ], + "why_might_be_wrong": "The dynamics of virus transmission can change rapidly, and unforeseen factors such as a mutation leading to higher transmissibility could significantly alter case numbers.", + "rationale": "The base rate for H5N1 outbreaks in the US is relatively low, given historical data. As of January 2025, there are only 9 confirmed cases. Although there is a recent uptick in cases, the nature of H5N1's transmission suggests it is less efficient at spreading among humans. Public health measures could further limit its spread. Therefore, the probability of reaching higher case numbers remains low.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.75, + 0.15, + 0.07, + 0.03 + ], + "ok": true, + "reference_class": "Confirmed human cases of H5N1 in countries with similar healthcare and surveillance systems.", + "base_rate": 0.1, + "drivers_up": [ + "Recent increase in cases, from 61 in December to 67 by January", + "Most cases are linked to commercial agriculture, suggesting potential for more exposure", + "The virus is already present in multiple states, increasing the likelihood of further spread" + ], + "drivers_down": [ + "The rate of increase appears to be slowing, with only 6 new cases from December to January", + "Strong healthcare and surveillance systems in the US may prevent rapid increases", + "Most cases have been mild, suggesting limited transmission potential" + ], + "why_might_be_wrong": "Under-reporting or delays in case detection and reporting could mean actual figures could be higher than currently known.", + "rationale": "As of the latest data in January 2025, there are 67 confirmed cases in the US. The increase from December to January was 6 cases, which suggests a slowdown in new cases. Given the base rate of similar outbreaks and the drivers up and down, it's reasonable to expect the number of confirmed cases to be in the 70-100 range by February 28, 2025. The strong healthcare infrastructure in the US should help contain the spread, but the presence of the virus in commercial agriculture remains a risk factor.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.39999999999999997, + 0.19999999999999998, + 0.19999999999999998, + 0.19999999999999998 + ], + "ok": true, + "reference_class": "Cumulative human cases of H5N1 in the US over a similar time frame.", + "base_rate": 0.2, + "drivers_up": [ + "Recent increase in cases suggests a trend towards higher reporting.", + "Previous months have shown a sharp increase, suggesting potential for continued spread.", + "Seasonal factors may contribute to a further increase in cases, as influenza viruses tend to spread more in certain weather conditions." + ], + "drivers_down": [ + "The recent cumulative number of cases is only 9, far from the lowest option threshold of 70.", + "Control measures and public health interventions may reduce the spread.", + "The window until February 28, 2025, is short for a significant case increase." + ], + "why_might_be_wrong": "Unexpected outbreaks or inaccuracies in reporting could rapidly change case numbers.", + "rationale": "The recent evidence shows a cumulative total of 9 cases, which is significantly below the threshold for 70-100 cases, the lowest option. Despite a recent increase, the short time frame until February 28, 2025, makes it unlikely to reach even the lowest option threshold. Control measures and natural limitations on spread also suggest slower growth. Thus, the probability of reaching any of the listed options is extremely low.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-098b4eaf5143", + "ins-bfd7147c04e1", + "ins-9673ff309cf6", + "ins-9bc33a10a1a9", + "ins-de3b9b382709", + "ins-fbe6644f1352", + "ins-8d3de449989e", + "ins-446bf4906d24", + "ins-b6ab7ed8251a", + "ins-b488ea400552", + "ins-56d2c848e6c0", + "ins-a6c09bc8ca4d", + "ins-69f9a7baa251", + "ins-e810d7258c41", + "ins-28774fa009a8", + "ins-c970251da78c", + "ins-e7a2be6db26c" + ], + "budget_summary": { + "total_input_tokens": 6609, + "total_output_tokens": 804, + "total_tokens": 7413, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 6609, + "output_tokens": 804, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/insight.json b/data/runs_ab_with_history/q1/traj_20250217/insight.json new file mode 100644 index 0000000..ba8359b --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/insight.json @@ -0,0 +1,529 @@ +{ + "records": [ + { + "id": "ins-e7a2be6db26c", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Cumulative total of confirmed human cases of A(H5) virus in the US since 2022.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:45.688513+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a91fce0340f74993b3ace471797f84fa", + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c3", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-e810d7258c41", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 66.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed H5N1 cases in the US since 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:49.709192+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-63ae00041a224378aa30a3ad43bb7b7d", + "chunk_id": "doc-63ae00041a224378aa30a3ad43bb7b7d-c0", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "There have been 66 confirmed cases of H5N1 bird flu in the US since 2024" + } + ] + }, + { + "id": "ins-de3b9b382709", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human infections in the U.S. for the year, with a majority in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:51.913200+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-aa69aaaf8d8d441281a07c239c037281", + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-8d3de449989e", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "first known case of H5N1 infection in the U.S. linked to sick and dead birds in backyard flocks.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:52.703139+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-aa69aaaf8d8d441281a07c239c037281", + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "the first known case of infection in the U.S. to have those origins." + } + ] + }, + { + "id": "ins-446bf4906d24", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 60.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "total of 60 cases reported, with 58 linked to commercial agriculture.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:52.703712+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-aa69aaaf8d8d441281a07c239c037281", + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c1", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the 60 other cases, 58 were linked to commercial agriculture" + } + ] + }, + { + "id": "ins-28774fa009a8", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed human cases of bird flu in the US this year, with 34 in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:54.628895+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-449e8f83e1404fd3b410fc900dc9e221", + "chunk_id": "doc-449e8f83e1404fd3b410fc900dc9e221-c1", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "Of the 61 confirmed human cases of bird flu in the US this year, 34 have been in California." + } + ] + }, + { + "id": "ins-b6ab7ed8251a", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of infection with influenza A(H5) reported from Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:47.772112+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a91fce0340f74993b3ace471797f84fa", + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-9673ff309cf6", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-21T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of infection with influenza A(H5) reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:47.772550+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a91fce0340f74993b3ace471797f84fa", + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-bfd7147c04e1", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of infection with influenza A(H5) reported from California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:47.772877+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a91fce0340f74993b3ace471797f84fa", + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-098b4eaf5143", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human cases of influenza A(H5) virus in the US since the last risk assessment.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:45.903814+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-a91fce0340f74993b3ace471797f84fa", + "chunk_id": "doc-a91fce0340f74993b3ace471797f84fa-c1", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-c970251da78c", + "question_id": "q1", + "event_type": "other", + "confidence": 0.5, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 954.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2003-01-01T00:00:00", + "event_date_precision": "day", + "summary": "Since 2003, the WHO has counted 954 confirmed human cases of bird flu, of which about half have died.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:49.858968+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-63ae00041a224378aa30a3ad43bb7b7d", + "chunk_id": "doc-63ae00041a224378aa30a3ad43bb7b7d-c1", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died." + } + ] + }, + { + "id": "ins-9bc33a10a1a9", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:51.781642+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-aa69aaaf8d8d441281a07c239c037281", + "chunk_id": "doc-aa69aaaf8d8d441281a07c239c037281-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + }, + { + "id": "ins-a6c09bc8ca4d", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 3.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-04-30T00:00:00", + "event_date_precision": "day", + "summary": "Three human A(H5) cases have been identified to date; all patients had mild illness, were not hospitalized, and fully recovered.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:56.873087+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-970f74dceb574b14a7b0fe450b6c8773", + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c5", + "source_url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "quote": "In the United States, three human A(H5) cases have been identified to date; all patients had mild illness, were not hospitalized, and fully recovered." + } + ] + }, + { + "id": "ins-69f9a7baa251", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-04-01T00:00:00", + "event_date_precision": "day", + "summary": "Two confirmed human cases of H5N1 reported in dairy farm workers in the U.S.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:56.755679+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-970f74dceb574b14a7b0fe450b6c8773", + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c3", + "source_url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "quote": "the Texas Department of State Health Services reported, after confirmation by CDC, that a commercial dairy farm worker tested positive" + } + ] + }, + { + "id": "ins-56d2c848e6c0", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "unknown", + "time_window": "unknown", + "surveillance_method": "syndromic and laboratory surveillance", + "data_quality": null, + "event_date": "2024-05-22T00:00:00", + "event_date_precision": "day", + "summary": "Two confirmed human cases of A(H5N1) reported in the U.S. as of May 22, 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:56.872685+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-970f74dceb574b14a7b0fe450b6c8773", + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c2", + "source_url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "quote": "a second human A(H5) case with conjunctivitis in Michigan, which was reported on May 22, 2024." + } + ] + }, + { + "id": "ins-b488ea400552", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-05-31T00:00:00", + "event_date_precision": "day", + "summary": "Two U.S. farm workers were infected during a multistate outbreak of A(H5N1) viruses in dairy cows.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:58.130015+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-970f74dceb574b14a7b0fe450b6c8773", + "chunk_id": "doc-970f74dceb574b14a7b0fe450b6c8773-c1", + "source_url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "quote": "these are the first known instances of presumed cow-to-human transmission of avian influenza A viruses." + } + ] + }, + { + "id": "ins-fbe6644f1352", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Louisiana", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "active", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "First severe case of H5N1 bird flu in the US, linked to backyard flock, patient hospitalized in critical condition.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:11:54.828221+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-449e8f83e1404fd3b410fc900dc9e221", + "chunk_id": "doc-449e8f83e1404fd3b410fc900dc9e221-c0", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States." + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 105592, + "total_output_tokens": 2307, + "total_tokens": 107899, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 105592, + "output_tokens": 2307, + "calls": 47 + } + } + }, + "documents_processed": 9, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/manifest.json b/data/runs_ab_with_history/q1/traj_20250217/manifest.json new file mode 100644 index 0000000..d67fb07 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250217", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:05:46.419369+00:00", + "completed_at": "2026-07-14T23:12:06.847370+00:00", + "stage_timings": { + "search": 230.591, + "filter": 3.103, + "extract": 115.962, + "insight": 21.543, + "forecast": 8.709 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": false + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-7debfd7ca7bb41a2811a31b4c81aedef", + "result_id": "7debfd7ca7bb41a2811a31b4c81aedef", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.0 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 107643, + "output_tokens": 2685, + "calls": 50 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 6609, + "output_tokens": 804, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 98, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 1661, + "output_tokens": 280, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 105592, + "output_tokens": 2307, + "calls": 47 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 6609, + "output_tokens": 804, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000117, + "filter": 0.000417, + "insight": 0.017223, + "forecast": 0.024563 + }, + "estimated_cost_usd": 0.04232 +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/question.json b/data/runs_ab_with_history/q1/traj_20250217/question.json new file mode 100644 index 0000000..7691521 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-17T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250217/search.json b/data/runs_ab_with_history/q1/traj_20250217/search.json new file mode 100644 index 0000000..d511d10 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250217/search.json @@ -0,0 +1,1010 @@ +[ + { + "id": "c999bcecc65d4956afe67674bf26fa23", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:05:50.204886+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9808219178082191, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6850387135199524, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "7debfd7ca7bb41a2811a31b4c81aedef", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250216235931id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:05:50.204886+00:00", + "published_date": "2025-02-16T23:59:31+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6086956521739131, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ca35fb7950ad4fc29c9784c3da0adb08", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.forbes.com/sites/brucelee/2025/01/30/first-reported-h5n9-bird-flu-outbreak-in-us-as-h5n1-keeps-spreading/", + "canonical_url": "https://forbes.com/sites/brucelee/2025/01/30/first-reported-h5n9-bird-flu-outbreak-in-us-as-h5n1-keeps-spreading", + "domain": "forbes.com", + "title": "First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading - Forbes", + "snippet": "First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading The U.S. hasn\u2019t been able to control the spread of the H5N1 bird flu. And now for the first time ever, there\u2019s been a reported outbreak in the U.S. of another strain of avian influenza, H5N9. Well, the H5N1 strain has been spreading among birds for the past several years and recently appeared in other animals like cattle, cats, pigs and, yes, humans, as I\u2019ve described for Forbes. The more birds get infected with the H5N1 or N5N9 viruses, the more likely it is for different mutations and reassortments to occur.", + "rank": 1, + "retrieved_at": "2026-07-14T23:09:35.624708+00:00", + "published_date": "2025-01-30T14:20:06+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9534246575342465, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5818642048838595, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "c826058f703e4b328c14f0084c1d5cea", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250215055940id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:05:50.204886+00:00", + "published_date": "2025-02-15T05:59:40+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5692912447885646, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "efccf4a3c8a2479bb83267539ced8646", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:05:50.204886+00:00", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9753424657534246, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5670994639666468, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "a91fce0340f74993b3ace471797f84fa", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:05:50.204886+00:00", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9698630136986301, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5665515187611674, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "63ae00041a224378aa30a3ad43bb7b7d", + "question_id": "q1", + "query_id": "dcf80c2221db4423acfce22c8ede73a9", + "engine": "tavily", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "rank": 4, + "retrieved_at": "2026-07-14T23:09:36.540489+00:00", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8904109589041096, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5608889219773674, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "aa69aaaf8d8d441281a07c239c037281", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:09:33.584549+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.554053007742704, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "970f74dceb574b14a7b0fe450b6c8773", + "question_id": "q1", + "query_id": "ff7234bdbf854896baff2f38bf5b26b0", + "engine": "tavily", + "url": "https://www.cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "canonical_url": "https://cdc.gov/mmwr/volumes/73/wr/mm7321e1.htm", + "domain": "cdc.gov", + "title": "Outbreak of Highly Pathogenic Avian Influenza A(H5N1) Viruses in U.S. Dairy Cattle and Detection of Two Human Cases \u2014 United States, 2024 | MMWR - CDC", + "snippet": "CDC is collaborating with the U.S. Department of Agriculture, the Food and Drug Administration, the Administration for Strategic Preparedness and Response, the Health Resources and Services Administration, the National Institute of Allergy and Infectious Diseases, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. One week earlier, the U.S. Department of Agriculture had reported a multistate outbreak of A(H5N1) viruses in dairy cows.\u00a7 A(H5N1) viruses were also detected in barn cats, birds, and other animals (e.g., one raccoon and two opossums) that lived in and around human habitations and that died on affected farms.\u00b6 Genetic sequencing of the A(H5N1) virus from infected cattle and the farm worker** identified clade 2.3.4.4b; this clade has been detected in U.S. wild birds, commercial poultry, backyard flocks, and other animals since January 2022 (2). Top Discussion CDC is collaborating with the U.S. Department of Agriculture, FDA, ASPR, the Health Resources and Services Administration, NIAID, and state and local public health and animal health officials using a coordinated One Health approach to identify and prepare for developments that could increase the risk to human health. CDC considers the current risk to the U.S. public from A(H5N1) viruses to be low; however, persons with exposure to infected animals or contaminated materials, including raw cow\u2019s milk, are at higher risk for A(H5N1) virus infection and should take recommended precautions, including using recommended personal protective equipment, self-monitoring for illness symptoms, and, if they are symptomatic, seeking prompt medical evaluation for influenza testing and antiviral treatment if indicated. Top Corresponding author: Shikha Garg, sgarg1@cdc.gov. Top 1Influenza Division, National Center for Immunization and Respiratory Diseases, CDC; 2One Health Office, National Center for Emerging and Zoonotic Infectious Diseases, CDC; 3Office of Public Health Data, Surveillance, and Technology, CDC; 4National Center for Immunization and Respiratory Diseases, CDC; 5Administration for Strategic Preparedness and Response, Washington, DC. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:09:37.515585+00:00", + "published_date": "2024-05-30T18:57:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.28219178082191776, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5193061346039309, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "61c97fac680747ae92b41486fd35f01e", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:09:33.584354+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8904109589041096, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5142584871947589, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "cb3c136bc0844f6f80f6190130e869d9", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:09:33.585010+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.48433070279928525, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "449e8f83e1404fd3b410fc900dc9e221", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 9, + "retrieved_at": "2026-07-14T23:09:34.573289+00:00", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4758804844153266, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ba53836215d04ca18a4b65877426dfcc", + "question_id": "q1", + "query_id": "ff7234bdbf854896baff2f38bf5b26b0", + "engine": "tavily", + "url": "https://www.cnn.com/2024/06/05/health/h5n1-bird-flu-in-wastewater/index.html", + "canonical_url": "https://cnn.com/2024/06/05/health/h5n1-bird-flu-in-wastewater/index.html", + "domain": "cnn.com", + "title": "First national look at H5N1 bird flu in wastewater suggests limited spread in US - CNN", + "snippet": "In a study published May 29, the CDC estimated that there was a 72% to 77% chance that current surveillance would detect one human case of H5N1 in an emergency room or urgent care clinic monthly, provided the person had symptoms similar in severity to a case of seasonal flu, and there were at least 100 cases of H5N1 in the population. The data, released Monday by the nonprofit WastewaterSCAN network, showed detections of the H5 protein portion of the flu virus in sewage from 14 water treatment plants in five states, mostly in Texas and Michigan, suggesting that an ongoing outbreak in dairy cattle may largely be confined to states that have already been identified as having affected herds. \u201cWhile these findings indicate that existing flu surveillance systems are likely to detect at least one novel influenza case before the virus has spread widely, CDC is asking that health care providers remain vigilant for signs and symptoms of influenza virus infection over the summer and maintain high rates of testing,\u201d the agency said in a news release.\u00a0 \u201cIn the case of Amarillo in Texas, for example, they had a dairy processing plant that was making processed dairy products, and their waste stream discharges into the wastewater treatment plant because milk, raw milk from the local area, was coming into that plant with H5N1,\u201d Boehm said. But when asked to estimate whether one thousand, tens of thousands or hundreds of thousands of cows had been affected, Deeble said he could not, underscoring the large degree of uncertainty involved in understanding the scope of the outbreak. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:09:37.515359+00:00", + "published_date": "2024-06-05T23:42:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.475080405002978, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "44ba70de673d4e17afd6923a8425030e", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/26/bird-flu-h5n1-explained-finland-will-start-vaccinating-humans-in-a-global-first/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/26/bird-flu-h5n1-explained-finland-will-start-vaccinating-humans-in-a-global-first", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Updates: Finland Will Be First Country To Vaccinate Humans - Forbes", + "snippet": "Breaking Bird Flu (H5N1) Explained: Finland Will Start Vaccinating Humans In A Global First Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:09:35.625391+00:00", + "published_date": "2024-06-26T12:54:24+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3561643835616438, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.46083382966051223, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "307b7587f09b4c9da8eac7c81b86b59c", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 6, + "retrieved_at": "2026-07-14T23:09:35.625494+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.25479452054794516, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44439249553305543, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "95a1ac1420004743afc881997a25d4ea", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 3, + "retrieved_at": "2026-07-14T23:09:35.624885+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.33150684931506846, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.437933293627159, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "f0653ecafa114883986f5bde57d5c71c", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "domain": "cidrap.umn.edu", + "title": "CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. A wastewater dashboard; states report more H5N1 in dairy herds Smederevac/iStock The Centers for Disease Control and Prevention (CDC) today unveiled a new influenza A wastewater tracker, part of its surveillance for H5N1 avian influenza, as three states reported more detections in dairy herds. H5N1 detected in 4 more dairy herds In other developments, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today reported four more H5N1 detections in dairy herds, raising the total to 46. A wastewater dashboard; states report more H5N1 in dairy herds The tracker will help with surveillance, but it doesn't distinguish the influenza A subtype or determine the source of the virus. ", + "rank": 6, + "retrieved_at": "2026-07-14T23:09:34.573116+00:00", + "published_date": "2024-05-14T20:54:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23835616438356166, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4231834425253127, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "c97026040f064ec99f6da29f434be86d", + "question_id": "q1", + "query_id": "ff7234bdbf854896baff2f38bf5b26b0", + "engine": "tavily", + "url": "https://www.austintexas.gov/news/status-update-traces-h5n1-detected-austin-travis-county-detected-wastewater-surveillance-risk-public-remains-low", + "canonical_url": "https://austintexas.gov/news/status-update-traces-h5n1-detected-austin-travis-county-detected-wastewater-surveillance-risk-public-remains-low", + "domain": "austintexas.gov", + "title": "Status Update: Traces of H5N1 Detected in Austin-Travis County detected in wastewater surveillance. Risk to public remains low. - AustinTexas.gov", + "snippet": "Action Navigation GTranslate Main menu Resident Business Government Departments Frequently Viewed Departments Connect Status Update: Traces of H5N1 Detected in Austin-Travis County detected in wastewater surveillance. Three human cases of H5N1 associated with exposure to sick cows have been reported in the U.S., all with mild illness, but it\u2019s important to be aware of the signs and symptoms of the virus, especially for those who work around cattle and other animals. One Reported Case of H5N1 in a Person in Texas On April 1, 2024, the Texas Department of State Health Services issued a health alert\u00a0reporting the first human case of H5N1 in Texas. The existence of this case expands the possibilities for potential human exposure to the influenza virus that is now being seen in wild birds, poultry and mammals such as dairy cattle. City of Austin Austin Public Health (APH) continuously monitors communicable diseases through various methods, wastewater surveillance being one of them. ", + "rank": 9, + "retrieved_at": "2026-07-14T23:09:37.515521+00:00", + "published_date": "2024-06-06T12:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "official", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3013698630136986, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.42245582688108, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "ffb841751cc64389bcd6030af75769fe", + "question_id": "q1", + "query_id": "dcf80c2221db4423acfce22c8ede73a9", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 2, + "retrieved_at": "2026-07-14T23:09:36.540360+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8575342465753425, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4164055985705778, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "7a8cb5e495e14f70a7ed5ce4f8676676", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 2, + "retrieved_at": "2026-07-14T23:09:34.572856+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9917808219178083, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.41026503871352, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "f564a9c0095848cba609ddd471a03c29", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:09:33.584942+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3178082191780822, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4092963498681188, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "c34e746a11c947d9ac4d81c56378a4ad", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "domain": "cidrap.umn.edu", + "title": "USDA reports reveal biosecurity risks at H5N1-affected dairy farms - University of Minnesota Twin Cities", + "snippet": "In other H5N1 developments: Related news USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Yesterday, the Iowa Department of Agriculture and Land Stewardship reported the state's third outbreak in a dairy herd, which affected a second location in Sioux County. Updates on human investigations, vaccine production Responding to questions about Michigan's second case-patient in a dairy worker, who, unlike the other previous patients, had respiratory symptoms, Nirav Shah, JD, MD, principal deputy director for the Centers for Disease Control and Prevention (CDC), said the polymerase chain reaction cycle threshold\u00a0 (Ct) value for the patient's sample was high, suggesting a lower amount of viral RNA in the sample. Main navigation USDA reports reveal biosecurity risks at H5N1-affected dairy farms Naked King/iStock Shared equipment and shared personnel working on multiple dairy farms are some of the main risk factors for ongoing spread of highly pathogenic H5N1 avian flu in dairy cows, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) said today in a pair of new epidemiologic reports. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. One of the reports is an overview based on the results of questionnaires from affected dairy herds, and the other is a deep dive into the dairy cow and poultry outbreaks in Michigan, the state hit hardest by outbreaks in dairy cows, which now number at least 94. ", + "rank": 4, + "retrieved_at": "2026-07-14T23:09:35.625209+00:00", + "published_date": "2024-06-13T20:33:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.32054794520547947, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4047721858248957, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "d38a96b0ed1b47e4adf1675b202b0be9", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "canonical_url": "https://aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "domain": "aol.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - AOL", + "snippet": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. The report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk. Taken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. AOL Where to shop today's best deals: Kate Spade, Amazon, Walmart and more ----------------------------------------------------------------------", + "rank": 6, + "retrieved_at": "2026-07-14T23:09:33.584871+00:00", + "published_date": "2025-01-04T02:31:46+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8821917808219178, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3884365693865397, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "8860567065104e75b8ff21a9ef142ac2", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "domain": "cidrap.umn.edu", + "title": "H5N1 confirmed in 5 more US dairy herds, more cats - University of Minnesota Twin Cities", + "snippet": "Related news H5N1 strikes dairy herd in Michigan, large poultry farm in Colorado Animal experiments shed more light on behavior of H5N1 from dairy cows CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit HHS awards Moderna $176 million to develop mRNA H5 avian flu vaccine More evidence pasteurization inactivates H5N1 avian flu virus in milk USDA spells out financial assistance to offset H5N1-linked milk losses Scientists expand H5N1 testing in dairy products, launch human serology study Experiments show H5N1 risk to dairy cows not exclusive to subtype infecting US herds This week's top reads CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit The infected farm worker is from Colorado, which has had the most affected dairy herds in the past month. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation H5N1 confirmed in 5 more US dairy herds, more cats Khaligo/iStock The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today added five more dairy herds in three states to its list of H5N1 avian flu outbreak confirmations. H5N1 confirmed in 5 more US dairy herds, more cats The additional cat detections are from 2 states battling the virus in cows: Minnesota and Michigan. More cat and wild-bird positives In related developments, APHIS confirmed H5N1 detections in three more domestic cats, two from Minnesota and one from Michigan, raising the total since 2022 to 33. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:09:34.573044+00:00", + "published_date": "2024-07-10T19:44:27+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3945205479452055, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.385104228707564, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "aca73231f1684edcb5ea179310da256e", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.yahoo.com/news/america-first-severe-case-bird-172433528.html", + "canonical_url": "https://yahoo.com/news/america-first-severe-case-bird-172433528.html", + "domain": "yahoo.com", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana - Yahoo! Voices", + "snippet": "There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 4, + "retrieved_at": "2026-07-14T23:09:33.584734+00:00", + "published_date": "2024-12-18T17:24:33+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3767138177486599, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "e8855a0b03a8470a8931f798046d6a0d", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "domain": "cidrap.umn.edu", + "title": "Wastewater testing finds H5N1 avian flu in 9 Texas cities - University of Minnesota Twin Cities", + "snippet": "In other developments: Related news Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain FDA finds no live H5N1 avian flu virus in sour cream or cottage cheese, will assess raw milk This week's top reads Study: HHS's COVID vaccine campaign saved $732 billion in averted infections, costs Researchers say the campaign encouraged 22 million Americans to complete their primary COVID-19 vaccine series, preventing nearly 2.6 million infections. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Wastewater testing finds H5N1 avian flu in 9 Texas cities varius-studios/ iStock Researchers who sequenced viruses from wastewater samples from 10 Texas cities found H5N1 avian flu virus in 9 of them, sometimes at levels that rivaled seasonal flu. On X, Mike Tisza, PhD, the first author of the study and assistant professor of virology and microbiology at Baylor, said it's still not clear where the viruses came from, but the evidence tilts toward an animal source, because the researchers didn't see any mutations with known links to human adaptation. Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals Monitoring of about 70 farm workers found no symptoms, and the state's wastewater sampling pilot has found no flu rise. ", + "rank": 9, + "retrieved_at": "2026-07-14T23:09:35.625596+00:00", + "published_date": "2024-05-13T20:52:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23561643835616441, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3754457018066309, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "5eeeab11e1f84eb798195d25cbcbee5b", + "question_id": "q1", + "query_id": "fa47a206519a4809bbf47255d3c7947b", + "engine": "tavily", + "url": "https://gizmodo.com/toyotas-woven-city-is-coming-together-2000546629", + "canonical_url": "https://gizmodo.com/toyotas-woven-city-is-coming-together-2000546629", + "domain": "gizmodo.com", + "title": "Toyota\u2019s \u2018Woven City\u2019 Is Coming Together - Gizmodo", + "snippet": "Live Updates From CES 2025 in Las Vegas \ud83d\udd34 Welcome to the \u2018Technosphere\u2019: The Hidden Carbon Vault Inside Your Gadgets AMD\u2019s Powerful Radeon 9000 Gaming CPUs Are Coming to Laptops Toyota\u2019s \u2018Woven City\u2019 Is Coming Together Elon\u2019s European Invasion Is Pissing Off World Leaders Bird Flu Patient in Louisiana Becomes First Human Death in Current H5N1 Outbreak Sealed With a Kiss: The Unexpected Origin Story of Pluto and Its Moon Charon 30 Years Ago Today, It Was Friday in California Live Updates From CES 2025 in Las Vegas \ud83d\udd34 1/6/2025, 4:51 pm Welcome to the \u2018Technosphere\u2019: The Hidden Carbon Vault Inside Your Gadgets 1/6/2025, 4:45 pm AMD\u2019s Powerful Radeon 9000 Gaming CPUs Are Coming to Laptops 1/6/2025, 4:32 pm Toyota\u2019s \u2018Woven City\u2019 Is Coming Together 1/6/2025, 4:30 pm ", + "rank": 2, + "retrieved_at": "2026-07-14T23:09:35.624808+00:00", + "published_date": "2025-01-06T21:30:47+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8876712328767123, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3607236450268017, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "897d1b46bbc841cd8b2322db6a479e10", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 3, + "retrieved_at": "2026-07-14T23:09:34.572958+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3068493150684931, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35590232281119716, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "41c039e14dc344909efa6d0a211c7383", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 10, + "retrieved_at": "2026-07-14T23:09:34.573361+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3544877903513997, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "cdaaceb275e6453496ac6c38310eefcd", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 10, + "retrieved_at": "2026-07-14T23:09:33.585130+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35421381774865995, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "27c81657935346f2943e130d233d7b37", + "question_id": "q1", + "query_id": "ff7234bdbf854896baff2f38bf5b26b0", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/hhs-advances-plan-produce-48-million-h5n1-vaccine-doses", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/hhs-advances-plan-produce-48-million-h5n1-vaccine-doses", + "domain": "cidrap.umn.edu", + "title": "HHS advances plan to produce 4.8 million H5N1 vaccine doses - University of Minnesota Twin Cities", + "snippet": "Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation HHS advances plan to produce 4.8 million H5N1 vaccine doses Response (ASPR) at the US Department of Health and Human Services (HHS) said officials are moving forward with a plan to produce 4.8 million doses of H5N1 avian flu vaccine for pandemic preparedness. \" Surveillance study describes incidence of multidrug-resistant infections in US children A surveillance\u00a0study found that carbapenem-resistant Enterobacterales (CRE) infections occur less frequently than extended-spectrum beta-lactamase\u2013producing Enterobacterales (ESBL-E) infections in US children, researchers reported today in Emerging Infectious Diseases. HHS advances plan to produce 4.8 million H5N1 vaccine doses Officials have identified a fill-and-finish opening on a production line at a vaccine company partner and said the activity won't disrupt the supply of seasonal flu vaccine. Led by researchers with the Centers for Disease Control and Prevention's Emerging Infections Program (EIP), the surveillance study analyzed CRE incidence in children in 10 states from 2016 through 2020 and ESBL-E incidence in children in six states from 2019 through 2020.", + "rank": 7, + "retrieved_at": "2026-07-14T23:09:37.515451+00:00", + "published_date": "2024-05-22T21:32:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.26027397260273977, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3435429252105845, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "cd63ac93afef41eab5d1c60d902cb9d8", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "canonical_url": "https://newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "domain": "newsweek.com", + "title": "Bird Flu Map Update as US Cases Rise to 14 - Newsweek", + "snippet": "In addition to being the first case not linked to contact with a sick animal, Missouri officials said that the case was the first detected using the state's flu surveillance system, rather than protocol specifically tailored to detect H5N1 cases related to the recent outbreak in livestock like dairy cows and poultry. The latest infection makes Missouri the fourth U.S. state with a human case this year. The following map created by Newsweek shows that all of this year's human H5N1 cases have been limited to Colorado, Texas, Michigan and Missouri: No cases of human-to-human transmission have ever been detected in the U.S. In humans, bird flu can range in severity from no symptoms to mild symptoms like eye infections or upper respiratory illness.", + "rank": 5, + "retrieved_at": "2026-07-14T23:09:33.584805+00:00", + "published_date": "2024-09-07T03:17:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5561643835616439, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3412686122692079, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "63853f61d3fc40d2b353ec620e250151", + "question_id": "q1", + "query_id": "35ff12c1894f4ead92779d42da4a01f9", + "engine": "tavily", + "url": "https://www.democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007/", + "canonical_url": "https://democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007", + "domain": "democratandchronicle.com", + "title": "Have the flu or know someone with it? Flu cases surge to highest levels in 15 years, CDC says - Democrat & Chronicle", + "snippet": "Flu cases 2025: Levels have increased to highest in 15 years, CDC says Flu cases surge to highest levels in 15 years, CDC says There are 12 states in the U.S. that have \"'very high\" flu activity, according to the CDC. For the first time this flu season, overall levels of the respiratory illness have reached \"very high\" activity despite a decrease in COVID-19 infections in recent months, according to the CDC. One of the states where flu levels are growing is Kentucky, where the probability of an influenza epidemic is growing\u00a0by 92.45%, the CDC said. The CDC still considers the\u00a0general population at \"low\" risk\u00a0for catching bird flu, but one 65-year-old Louisiana resident with complicating health conditions did die from the disease.", + "rank": 7, + "retrieved_at": "2026-07-14T23:09:34.573194+00:00", + "published_date": "2025-02-11T19:26:32+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3365804475453076, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "dddc60e3510745fc8dada35d3e04b2d1", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:09:33.584652+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29315068493150687, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3349672424061942, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "b237b205e19540d9b8be63659732b5fb", + "question_id": "q1", + "query_id": "ff7234bdbf854896baff2f38bf5b26b0", + "engine": "tavily", + "url": "https://www.livemint.com/news/us-health-officials-to-spend-100-million-on-bird-flu-surveillance-11715381860819.html", + "canonical_url": "https://livemint.com/news/us-health-officials-to-spend-100-million-on-bird-flu-surveillance-11715381860819.html", + "domain": "livemint.com", + "title": "US Health Officials to Spend $100 Million on Bird Flu Surveillance | Mint - Mint", + "snippet": "The Centers for Disease Control and Prevention and the Food and Drug Administration will use the funding to detect and track the virus, called H5N1, that\u2019s been spreading in wild birds, poultry and domestic cows, according to a statement Friday. This is a subscriber only feature Subscribe Now to get daily updates on WhatsApp Open Demat Account and Get Best Offers Start Investing in Stocks, Mutual Funds, IPOs, and more I'm interested in opening a Trading and Demat Account and am comfortable with the online account opening process. US Health Officials to Spend $100 Million on Bird Flu Surveillance US health officials are putting more than $100 million toward ramping up surveillance of bird flu in cattle and people amid rising concerns that the outbreak has spread more widely than reported. While just one H5N1 infection has been recorded in a person in the US so far, scientists have cautioned that virus has the potential to mutate into something far more transmissible and dangerous. One in five milk samples contains fragments of the avian flu virus, the agency said in April, but pasteurization kills it. Tests for live virus in eggs have been negative, the FDA said.", + "rank": 2, + "retrieved_at": "2026-07-14T23:09:37.515250+00:00", + "published_date": "2024-05-10T22:57:40+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.22739726027397256, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3338266825491364, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + }, + { + "id": "4c09570713f44d0e97c213a37e98c39e", + "question_id": "q1", + "query_id": "4fa0fe69f6ec43c4a4337ffd1b3212ff", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:09:33.585073+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8356164383561644, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3167500496327179, + "published_date_source": "backend", + "cutoff_applied": "2025-02-17T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/documents.json b/data/runs_ab_with_history/q1/traj_20250220/documents.json new file mode 100644 index 0000000..b41f9a4 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/documents.json @@ -0,0 +1,703 @@ +[ + { + "id": "doc-e665e71b7d5b4a948f5bc253e7dde773", + "result_id": "e665e71b7d5b4a948f5bc253e7dde773", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:16:50.565126+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-e665e71b7d5b4a948f5bc253e7dde773-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e665e71b7d5b4a948f5bc253e7dde773-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e665e71b7d5b4a948f5bc253e7dde773-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e665e71b7d5b4a948f5bc253e7dde773-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-474e1c111d17468b91ff565c1e386d00", + "result_id": "474e1c111d17468b91ff565c1e386d00", + "source_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:17:05.249074+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-19T04:51:33+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-474e1c111d17468b91ff565c1e386d00-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-916c3523d9f244d696b4adcc7e35a859", + "result_id": "916c3523d9f244d696b4adcc7e35a859", + "source_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:18:17.048809+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-19T00:40:48+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-916c3523d9f244d696b4adcc7e35a859-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-916c3523d9f244d696b4adcc7e35a859-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-916c3523d9f244d696b4adcc7e35a859-c2", + "chunk_index": 2, + "text": "\u2022 12,064 wild birds detected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 162,586,638 poultry affected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 972 dairy herds affected as of 2/18/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/18/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-112556cef5d64e7cb1faff79c116e8a3", + "result_id": "112556cef5d64e7cb1faff79c116e8a3", + "source_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:18:34.200086+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-07T11:32:27+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-112556cef5d64e7cb1faff79c116e8a3-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-112556cef5d64e7cb1faff79c116e8a3-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-112556cef5d64e7cb1faff79c116e8a3-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-112556cef5d64e7cb1faff79c116e8a3-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-112556cef5d64e7cb1faff79c116e8a3-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "result_id": "46640fdee37b4b72a14e965bd4af5e59", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:18:37.238204+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-33633ea86ca34fed954ee36e2ea039ea", + "result_id": "33633ea86ca34fed954ee36e2ea039ea", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:19:29.152387+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-6eddfdfec1dd4fb1893315648a2e8718", + "result_id": "6eddfdfec1dd4fb1893315648a2e8718", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "fetched_at": "2026-07-14T23:19:39.668809+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN", + "published_date": "2024-12-18T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4156, + "token_count": 821, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-6eddfdfec1dd4fb1893315648a2e8718-c0", + "chunk_index": 0, + "text": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States.\nThe agency said Wednesday that the person was exposed to sick and dead birds in backyard flocks; this is the first US bird flu case linked to a backyard flock.\n\u201cIt is believed that the patient that was reported by Louisiana had exposure to sick or dead birds on their property. These are not commercial poultry, and there was no exposure to dairy cows or their related products,\u201d said Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC.\nFederal officials declined to answer questions about the patient\u2019s symptoms or their current condition. They instead referred all inquiries about the case to the Louisiana Department of Health, which is leading the investigation.\nAccording to state officials, the patient is experiencing severe respiratory illness related to H5N1 and is hospitalized in critical condition. The person is older than 65 and has underlying medical conditions that increased their risk of flu complications, the Louisiana Department of Health said in an email to CNN.\nThis virus, D1.1, is the same type found in recent human cases in Canada and Washington state and detected in wild birds and poultry in the United States. It\u2019s different from B3.13, the type detected in dairy cows, some poultry outbreaks and other cases in humans across the United States.\nThe CDC said it\u2019s working on additional genomic sequencing of samples from the patient, who is from southwestern Louisiana, and the investigation into the patient\u2019s exposure is still underway.\nBird flu has been linked with severe human illness and death in other countries, but no person-to-person spread has been detected.\n\u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement.\nIn California, Gov. Gavin Newsom declared a state of emergency Wednesday over the continued spread of H5N1 bird flu in that state.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 420, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-6eddfdfec1dd4fb1893315648a2e8718-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\nNewsom said the measure was necessary because, despite intense efforts to contain it, the virus had spread beyond the Central Valley to four dairies in the southern part of the state.\n\u201cThis proclamation is a targeted action to ensure government agencies have the resources and flexibility they need to respond quickly to this outbreak,\u201d he said in a news release. \u201cWhile the risk to the public remains low, we will continue to take all necessary steps to prevent the spread of this virus.\u201d\nThe emergency declaration will give state agencies greater flexibility with staffing and free up more funding for the response.\nOf the 61 confirmed human cases of bird flu in the US this year, 34 have been in California. Nearly all of those have been in dairy farm workers, according to the CDC.\nThe Louisiana case shows that precautions should be taken by people with backyard chicken flocks, hunters and other bird enthusiasts, the CDC said.\n\u201cThe cases across the US are a constellation of spillovers,\u201d said Dr. Rebecca Christofferson, a virologist at Louisiana State University\u2019s School of Veterinary Medicine. Experts still don\u2019t understand exactly how these spillovers are happening and the specific factors that increase a person\u2019s risk.\n\u201cIt\u2019s just kind of a black box at the moment that a lot of people are trying to answer these questions on,\u201d Christofferson said.\nThe CDC says the best approach is to avoid exposure. Infected birds can shed viruses in their saliva, mucus and feces, and other animals may shed them in their respiratory secretions and bodily fluids, including unpasteurized milk from cows.\n\u201cPeople who work with or have recreational exposure to infected animals are at higher risk of infection, and it\u2019s extremely important that they follow CDC recommended precautions when around infected or potentially infected animals, a message that we will continue to magnify given recent cases,\u201d Daskalakis said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 401, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-09T23:57:07+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "doc-92a5cade3af5474ea198fe03d7dcded7", + "result_id": "92a5cade3af5474ea198fe03d7dcded7", + "source_url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "domain": "who.int", + "fetched_at": "2026-07-14T23:20:05.651390+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "title": "Avian Influenza A(H5N1)- Cambodia", + "published_date": "2024-01-01T00:00:00", + "language": "en", + "page_count": null, + "char_count": 11643, + "token_count": 2422, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c0", + "chunk_index": 0, + "text": "On 20 August 2024, the IHR NFP of the Kingdom of Cambodia notified WHO of one case of human infection with influenza A(H5N1) in a 15-year-old with no underlying medical conditions, from Prey Veng Province. The child had an onset of fever on 11 August 2024. On 17 August, the patient was hospitalized in Phnom Penh at a severe acute respiratory infection (SARI) sentinel site. On admission, the patient presented with a fever, cough, sore throat, and difficulty breathing, and on the same day, treatment with oseltamivir was initiated. Nasopharyngeal and oropharyngeal swab specimens were collected on 17 August, and the patient died on 20 August.\nSwab specimens collected on 17 August arrived at the National Institute of Public Health of Cambodia on 19 August and tested positive for influenza A(H5N1) by quantitative reverse transcription polymerase chain reaction (RT-qPCR) on 20 August. The results were confirmed by the Institut Pasteur du Cambodge (IPC) the same day. The sample was successfully sequenced, and phylogenetic analysis of the haemagglutinin (HA) gene showed the virus to be H5 clade 2.3.2.1c, similar to the viruses circulating in Cambodia and Southeast Asia since 2013-2014. However, its internal genes belong to H5 clade 2.3.4.4b viruses. This novel reassortant influenza A(H5N1) virus has been detected in human cases reported in Cambodia since late 2023.\nAccording to early investigations, there were reports of dead poultry in the village about five days before the patient\u2019s onset of illness. The patient's family was given some of these chickens for consumption and the girl was exposed to the chicken while preparing food.\nThe Cambodian Communicable Disease and Control Department (CDC), Ministry of Health, and local Rapid Response Team conducted further investigations. Six close contacts were identified, and oseltamivir was provided to them. All close contacts are being monitored and are asymptomatic. Further investigations and response measures are ongoing for public and animal health and the environment. Test results for samples collected from chickens and ducks from the village are pending.\nAvian influenza A(H5N1) was detected for the first time in Cambodia in December 2003, initially affecting wild birds. From then until 2014, sporadic human cases were reported due to transmission from poultry to humans, either directly or indirectly through contaminated environments. Between 2014 and 2022, there were no reports of human infection with A(H5N1) viruses. However, the re-emergence of human infections with A(H5N1) viruses in Cambodia was reported in February 2023; six cases were reported that year. This case is one of 10 human cases of influenza A(H5N1) infection reported in Cambodia in 2024. Two of the 10 cases were fatal, and nine involved persons under 18 years of age. From 2003 to the present, 72 cases of human infection with influenza A(H5N1), including 43 deaths (CFR 59.7%), have been reported in the country.", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation", + "page_number": null, + "table_data": null, + "token_count": 678, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c1", + "chunk_index": 1, + "text": "Animal influenza viruses normally circulate in animals but can also infect humans. Infections in humans have primarily been acquired through direct contact with infected animals or contaminated environments. Depending on the original host, influenza A viruses can be classified as avian influenza, swine influenza, or other types of animal influenza viruses.\nAvian influenza virus infections in humans may cause disease ranging from mild upper respiratory tract infection to severe disease and death. Conjunctivitis, gastrointestinal symptoms, encephalitis and encephalopathy have all been reported. There have also been several detections of A(H5N1) virus in asymptomatic persons who had exposure to infected birds.\nLaboratory tests are required to diagnose human infection with avian influenza. WHO periodically updates technical guidance protocols for the detection of zoonotic influenza using molecular methods, e.g., RT-PCR. Evidence suggests that some antiviral drugs, notably neuraminidase inhibitors (oseltamivir, zanamivir), can reduce the duration of viral replication and improve prospects of survival in some cases.\nFrom 2003 to 20 August 2024, 903 cases of human infections with avian influenza A(H5N1), including 464 deaths (CFR 51.4%), have been reported to WHO from 24 countries. Almost all of these cases have been linked to close contact with infected live or dead birds, or contaminated environments.", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation > Epidemiology", + "page_number": null, + "table_data": null, + "token_count": 286, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c2", + "chunk_index": 2, + "text": "The Ministry of Health's national and sub-national rapid response teams have been deployed to conduct further investigations and respond to this avian influenza outbreak. Response measures are being implemented in coordination with the local authorities, the Ministry of Environment, and the Ministry of Agriculture, Forestry, and Fisheries.\n\u2022 Investigations are ongoing to identify the presence of the disease in animals and sources of transmission, detect suspected animal and human cases, and prevent community transmission.\n\u2022 Close contacts are being monitored and provided with oseltamivir treatment as prophylaxis.\n\u2022 Health education campaigns are being conducted in affected villages.\n\u2022 Stamping-out measures are being implemented, including culling of poultry, safe disposal of carcasses and potentially contaminated materials, and cleaning and disinfection.\nWHO has provided technical assistance to the investigation and response, including efforts to increase public awareness and adoption of preventive behaviours, and raise clinical suspicion of avian influenza amongst healthcare providers to support early detection and strengthen clinical management of cases. WHO continues to collaborate with partners to ensure coordinated actions for a One Health response.", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation > Public health response", + "page_number": null, + "table_data": null, + "token_count": 210, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c3", + "chunk_index": 3, + "text": "From 2003 to 20 August 2024, a total of 903 human cases of infection of influenza A(H5N1) have been reported globally to WHO from 24 countries, including this case. Almost all cases of human infection with avian influenza A(H5N1) have been linked to close contact with A(H5N1)-infected live or dead birds or mammals, or contaminated environments.\nAvailable epidemiological and virological evidence suggests that A(H5N1) viruses have not acquired the capacity for sustained transmission among humans. Therefore, the likelihood of sustained human-to-human spread is low at present. Since the virus continues to circulate in poultry, particularly in rural areas in Cambodia, further sporadic human cases can be expected.\nCurrently, based on available information, WHO assesses the overall public health risk posed by this virus to be low. The risk assessment will be reviewed as needed if additional information becomes available.\nClose analysis of the epidemiological situation, further characterization of the most recent influenza A(H5N1) viruses in both human and poultry populations, and serological investigations are critical to assess associated risks to public health and promptly adjust risk management measures.\nVaccines against seasonal influenza viruses will not protect humans against infections with influenza A(H5N1) viruses. Candidate vaccines to prevent influenza A(H5) infection in humans have been developed for pandemic preparedness in some countries. WHO continues to update the list of zoonotic influenza candidate vaccine viruses (CVV), which are selected twice a year at the WHO consultation on influenza virus vaccine composition. The list of such CVVs is available on the WHO website, at the reference below. In addition, the genetic and antigenic characterization of contemporary zoonotic influenza viruses is published here.", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation > WHO risk assessment", + "page_number": null, + "table_data": null, + "token_count": 359, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c4", + "chunk_index": 4, + "text": "This event does not change WHO recommendations on public health measures and influenza surveillance.\nThe public should avoid contact with high-risk environments, such as live animal markets/farms and live poultry or surfaces that might be contaminated by poultry droppings. Additionally, maintaining good hand hygiene through frequent hand washing with soap or using alcohol-based hand sanitizer is recommended.\nThe general public and at-risk individuals should immediately report instances of illness or unexpected deaths in animals to veterinary authorities. Handling sick or unexpectedly dead poultry including slaughtering, butchering, and preparing such poultry for consumption, should be avoided.\nAny person exposed to potentially infected animals or contaminated environments who feels unwell should seek healthcare promptly and inform their healthcare provider of their possible exposure.\nWHO does not recommend special traveler screening at points of entry or other restrictions due to the current situation of influenza viruses at the human-animal interface.\nStates Parties to the International Health Regulations (2005) are required to immediately notify WHO of any laboratory-confirmed case of a human infection caused by a new subtype of influenza virus. Evidence of illness is not required for this notification.", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation > WHO advice", + "page_number": null, + "table_data": null, + "token_count": 219, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c5", + "chunk_index": 5, + "text": "\u2022 Global influenza programme, human-animal interface: https://www.who.int/teams/global-influenza-programme/avian-influenza\n\u2022 World Health Organization. Practical interim guidance to reduce the risk of infection in people exposed to avian influenza viruses: https://iris.who.int/handle/10665/378626\n\u2022 World Health Organization. Risk assessments and summaries of influenza at the human-animal interface: https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary\n\u2022 World Health Organization Western Pacific. Avian Influenza Weekly Update: https://www.who.int/westernpacific/emergencies/surveillance/avian-influenza\n\u2022 World Health Organization. Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases: https://www.who.int/publications-detail-redirect/WHO-WHE-IHM-GIP-2018.2\n\u2022 World Health Organization. Summary of Key Information Practical to Countries Experiencing Outbreaks of A(H5N1) and Other Subtypes of Avian Influenza: https://apps.who.int/iris/rest/bitstreams/1031911/retrieve\n\u2022 World Health Organization. Maintaining surveillance of influenza and monitoring SARS-CoV-2 adapting Global Influenza surveillance and Response System (GISRS) and sentinel systems during the COVID-19 pandemic: https://www.who.int/publications/i/item/maintaining-surveillance-of-influenza-and-monitoring-sars-cov-2-adapting-global-influenza-surveillance-and-response-system-(gisrs)-and-sentinel-systems-during-the-covid-19-pandemic\n\u2022 World Health Organization. Case definitions for the four diseases requiring notification in all circumstances under the International Health Regulations (2005): https://www.who.int/publications/m/item/case-definitions-for-the-four-diseases-requiring-notification-to-who-in-all-circumstances-under-the-ihr-(2005)\n\u2022 Food and Agriculture Organization of the United Nations. Evidence-based risk management along the livestock production and market chain: Cambodia: https://www.fao.org/publications/card/en/c/CA7319EN/(link is external)(link is external)(link is external)\n\u2022 Disease Outbreak News. Avian Influenza A (H5N1) - Cambodia: https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON501\n\u2022 Food and Agriculture Organization of the United Nations. Animal Production and Health Division (NSA) https://www.fao.org/agriculture/animal-production-and-health/en(link is external)\n\u2022 World Health Organization. Addressing the low-risk perception of avian flu in Cambodia: https://www.who.int/westernpacific/news-room/feature-stories/item/addressing-the-low-risk-perception-of-avian-flu-in-cambodia Citable reference: World Health Organization (2 September 2024). Disease Outbreak News; Avian Influenza A (H5N1) in Cambodia Available at: https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "chunk_type": "prose", + "heading": "Situation at a glance > Description of the situation > Further information", + "page_number": null, + "table_data": null, + "token_count": 670, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "20 August 2024", + "11 August 2024", + "2 September 2024" + ], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T17:31:50+00:00", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/filtered.json b/data/runs_ab_with_history/q1/traj_20250220/filtered.json new file mode 100644 index 0000000..37da54b --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/filtered.json @@ -0,0 +1,208 @@ +[ + { + "result_id": "e665e71b7d5b4a948f5bc253e7dde773", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "474e1c111d17468b91ff565c1e386d00", + "question_id": "q1", + "url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-19T04:51:33+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "916c3523d9f244d696b4adcc7e35a859", + "question_id": "q1", + "url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-19T00:40:48+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "112556cef5d64e7cb1faff79c116e8a3", + "question_id": "q1", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "46640fdee37b4b72a14e965bd4af5e59", + "question_id": "q1", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "33633ea86ca34fed954ee36e2ea039ea", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.9, + "credibility_score": 0.8, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "trusted_source" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "6eddfdfec1dd4fb1893315648a2e8718", + "question_id": "q1", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "event-specific", + "trusted_source" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "92a5cade3af5474ea198fe03d7dcded7", + "question_id": "q1", + "url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "canonical_url": "https://who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "domain": "who.int", + "title": "Avian Influenza A(H5N1) - Cambodia - World Health Organization (WHO)", + "snippet": "On 20 August 2024, the World Health Organization (WHO) was notified by the country\u2019s International Health Regulations (IHR) National Focal Point (NFP) of a laboratory-confirmed case of human infection with avian influenza A(H5N1) virus (clade 2.3.2.1c) in a 15-year-old child in the Kingdom of Cambodia. From 2003 to 20 August 2024, 903 cases of human infections with avian influenza A(H5N1), including 464 deaths (CFR 51.4%), have been reported to WHO from 24 countries. Close analysis of the epidemiological situation, further characterization of the most recent influenza A(H5N1) viruses in both human and poultry populations, and serological investigations are critical to assess associated risks to public health and promptly adjust risk management measures.", + "published_date": "2024-09-02T17:03:45+00:00", + "file_type": null, + "relevance_score": 0.391304347826087, + "credibility_score": 1.0, + "final_score": 0.6621262656343061, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "official_domain", + "has_publication_date", + "passed_heuristic_threshold" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "medium", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/forecast.json b/data/runs_ab_with_history/q1/traj_20250220/forecast.json new file mode 100644 index 0000000..cca5c71 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/forecast.json @@ -0,0 +1,154 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9978743860813621, + "100-150": 0.0019075990590898026, + "150-200": 0.00016069748614622954, + "200+": 5.731737340189762e-05 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9978743860813621, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 0.0019075990590898026, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 0.00016069748614622954, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 5.731737340189762e-05, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.933, + 0.048, + 0.013, + 0.006 + ], + "ok": true, + "reference_class": "Past H5N1 outbreaks in the United States and globally", + "base_rate": 0.933, + "drivers_up": [ + "The cumulative number of cases has reached 67, indicating some spread.", + "There was a recent increase in cases from 61 to 67 over a short period." + ], + "drivers_down": [ + "Base rate for H5N1 outbreaks in the US is historically low.", + "H5N1 has limited human-to-human transmission capabilities compared to other influenza viruses.", + "The recent uptick in cases is relatively small in absolute numbers." + ], + "why_might_be_wrong": "There could be an unexpected large-scale outbreak or underreporting of cases leading to a higher actual number than predicted.", + "rationale": "The cumulative confirmed cases of H5N1 in the US have reached 67, with a recent small uptick in cases. Despite this, H5N1 historically has limited human-to-human transmission, and the base rate for outbreaks in the US remains low. Given these factors, it is most likely that the total reported cases by February 28, 2025, will remain within the 70-100 range. Any substantial increase would be unexpected based on historical patterns and current transmission characteristics.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.95, + 0.03, + 0.01, + 0.01 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.95, + "drivers_up": [ + "Recent uptick in cases, with a cumulative total of 67 cases as of mid-February 2025.", + "Historically low human-to-human transmission of H5N1 limits rapid spread." + ], + "drivers_down": [ + "No significant increase in cases reported between mid-January and mid-February 2025.", + "Strong public health measures and awareness may limit further spread.", + "Historically, H5N1 has shown limited capability for sustained human-to-human transmission." + ], + "why_might_be_wrong": "An unexpected outbreak or change in the virus transmissibility could lead to a rapid increase in cases beyond the base rate.", + "rationale": "As of February 2025, the cumulative confirmed human cases of H5N1 in the US is 67. Given the historical transmission patterns of H5N1, where human-to-human transmission is rare, and the lack of significant increase in cases recently, it's unlikely that the number will surpass 100 by February 28, 2025. Thus, the probability of remaining in the 70-100 range is high, with smaller probabilities for higher numbers.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.933, + 0.048, + 0.013, + 0.006 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.933, + "drivers_up": [ + "Recent increase in confirmed cases to 67 by mid-February 2025 indicates potential for more cases.", + "H5N1 is a zoonotic virus with potential for human transmission, primarily in areas with high bird-human interaction." + ], + "drivers_down": [ + "Historically low base rates of H5N1 cases in humans in the US.", + "Limited human-to-human transmission of H5N1 compared to other influenza viruses.", + "Current surveillance and control measures in place in the US reduce likelihood of rapid spread." + ], + "why_might_be_wrong": "H5N1 could mutate to become more easily transmissible between humans, leading to a sudden increase in cases that current surveillance might not catch immediately.", + "rationale": "The base rate of H5N1 cases in the US has historically been low, and although there has been a recent increase to 67 cases, the transmission dynamics of H5N1 suggest limited human-to-human spread. Surveillance and control measures are likely to contain further spread, making a large jump in cases unlikely by the target date. Therefore, it is reasonable to predict that confirmed cases will remain in the 70-100 range.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-3f61179552e1", + "ins-b98c3ee6ebdc", + "ins-d55b420f88e6", + "ins-e8d6a74cd91d", + "ins-0c46a1b83e3c", + "ins-3c6bddb54123", + "ins-77a12428355c", + "ins-46bed2e91d43", + "ins-1ad18630365d", + "ins-b514cf2d804f", + "ins-362af5c8a89f", + "ins-8af42bb3249e", + "ins-fc7f78ebceab" + ], + "budget_summary": { + "total_input_tokens": 7164, + "total_output_tokens": 787, + "total_tokens": 7951, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 7164, + "output_tokens": 787, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/insight.json b/data/runs_ab_with_history/q1/traj_20250220/insight.json new file mode 100644 index 0000000..401014e --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/insight.json @@ -0,0 +1,409 @@ +{ + "records": [ + { + "id": "ins-fc7f78ebceab", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Cumulative total of confirmed cases since 2022, with all but one occurring in 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:14.577630+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c3", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-0c46a1b83e3c", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Confirmed human infections recorded in the U.S. this year, with 34 cases reported, mostly in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:18.404272+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-33633ea86ca34fed954ee36e2ea039ea", + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-1ad18630365d", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed human cases of bird flu in the US this year, with 34 in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:20.775375+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-6eddfdfec1dd4fb1893315648a2e8718", + "chunk_id": "doc-6eddfdfec1dd4fb1893315648a2e8718-c1", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "Of the 61 confirmed human cases of bird flu in the US this year, 34 have been in California." + } + ] + }, + { + "id": "ins-77a12428355c", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of infection with influenza A(H5) reported from Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:16.573426+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-d55b420f88e6", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-20T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of infection with influenza A(H5) reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:16.573823+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-b98c3ee6ebdc", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of infection with influenza A(H5) reported from California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:16.574161+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c2", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-3f61179552e1", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human cases of influenza A(H5) virus in the US since the last risk assessment.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:14.732165+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-46640fdee37b4b72a14e965bd4af5e59", + "chunk_id": "doc-46640fdee37b4b72a14e965bd4af5e59-c1", + "source_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-e8d6a74cd91d", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:18.707219+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-33633ea86ca34fed954ee36e2ea039ea", + "chunk_id": "doc-33633ea86ca34fed954ee36e2ea039ea-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + }, + { + "id": "ins-3c6bddb54123", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Louisiana", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "active", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "First severe case of H5N1 bird flu in the US, linked to backyard flock, patient hospitalized in critical condition.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:20.772548+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-6eddfdfec1dd4fb1893315648a2e8718", + "chunk_id": "doc-6eddfdfec1dd4fb1893315648a2e8718-c0", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States." + } + ] + }, + { + "id": "ins-b514cf2d804f", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.5, + "location": "Cambodia", + "iso_country_code": "KH", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 10.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "day", + "summary": "10 human cases of influenza A(H5N1) infection reported in Cambodia in 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:25.998309+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-92a5cade3af5474ea198fe03d7dcded7", + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c0", + "source_url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "quote": "This case is one of 10 human cases of influenza A(H5N1) infection reported in Cambodia in 2024." + } + ] + }, + { + "id": "ins-362af5c8a89f", + "question_id": "q1", + "event_type": "death_count", + "confidence": 0.5, + "location": "Cambodia", + "iso_country_code": "KH", + "pathogen": "h5n1", + "metric_name": "deaths", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "day", + "summary": "2 of the 10 cases were fatal in Cambodia in 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:25.998752+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-92a5cade3af5474ea198fe03d7dcded7", + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c0", + "source_url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "quote": "Two of the 10 cases were fatal" + } + ] + }, + { + "id": "ins-8af42bb3249e", + "question_id": "q1", + "event_type": "death_count", + "confidence": 0.5, + "location": "Cambodia", + "iso_country_code": "KH", + "pathogen": "h5n1", + "metric_name": "deaths", + "metric_value": 43.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "day", + "summary": "43 deaths reported in Cambodia from 2003 to present due to influenza A(H5N1).", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:26.012396+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-92a5cade3af5474ea198fe03d7dcded7", + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c0", + "source_url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "quote": "including 43 deaths (CFR 59.7%), have been reported in the country." + } + ] + }, + { + "id": "ins-46bed2e91d43", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 903.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-08-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of human infections with avian influenza A(H5N1) reported from 2003 to August 20, 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:20:22.823356+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-92a5cade3af5474ea198fe03d7dcded7", + "chunk_id": "doc-92a5cade3af5474ea198fe03d7dcded7-c1", + "source_url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "quote": "903 cases of human infections with avian influenza A(H5N1), including 464 deaths" + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 84904, + "total_output_tokens": 1883, + "total_tokens": 86787, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 84904, + "output_tokens": 1883, + "calls": 38 + } + } + }, + "documents_processed": 8, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/manifest.json b/data/runs_ab_with_history/q1/traj_20250220/manifest.json new file mode 100644 index 0000000..5272a8c --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250220", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:12:06.954051+00:00", + "completed_at": "2026-07-14T23:20:32.915876+00:00", + "stage_timings": { + "search": 265.38, + "filter": 1.938, + "extract": 213.615, + "insight": 18.118, + "forecast": 6.889 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": false + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-474e1c111d17468b91ff565c1e386d00", + "result_id": "474e1c111d17468b91ff565c1e386d00", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.001 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 86267, + "output_tokens": 2112, + "calls": 41 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 7164, + "output_tokens": 787, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 96, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 973, + "output_tokens": 133, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 84904, + "output_tokens": 1883, + "calls": 38 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 7164, + "output_tokens": 787, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000116, + "filter": 0.000226, + "insight": 0.013865, + "forecast": 0.02578 + }, + "estimated_cost_usd": 0.039987 +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/question.json b/data/runs_ab_with_history/q1/traj_20250220/question.json new file mode 100644 index 0000000..cbc3445 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-20T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250220/search.json b/data/runs_ab_with_history/q1/traj_20250220/search.json new file mode 100644 index 0000000..7557e19 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250220/search.json @@ -0,0 +1,1066 @@ +[ + { + "id": "e665e71b7d5b4a948f5bc253e7dde773", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:12:08.804423+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9726027397260274, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6842167957117332, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "474e1c111d17468b91ff565c1e386d00", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250219045133id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:12:08.804423+00:00", + "published_date": "2025-02-19T04:51:33+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6086956521739131, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "916c3523d9f244d696b4adcc7e35a859", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250219004048id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:12:08.804423+00:00", + "published_date": "2025-02-19T00:40:48+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 1.0, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5695652173913044, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "112556cef5d64e7cb1faff79c116e8a3", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250207113227id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:12:08.804423+00:00", + "published_date": "2025-02-07T11:32:27+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9671232876712329, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5662775461584276, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "46640fdee37b4b72a14e965bd4af5e59", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250205083524id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:12:08.804423+00:00", + "published_date": "2025-02-05T08:35:24+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9616438356164384, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5657296009529482, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "33633ea86ca34fed954ee36e2ea039ea", + "question_id": "q1", + "query_id": "632571d886c8424086b9fc49d160d69f", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:16:31.499099+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5532310899344848, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "92a5cade3af5474ea198fe03d7dcded7", + "question_id": "q1", + "query_id": "632571d886c8424086b9fc49d160d69f", + "engine": "tavily", + "url": "https://www.who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "canonical_url": "https://who.int/emergencies/disease-outbreak-news/item/2024-DON533", + "domain": "who.int", + "title": "Avian Influenza A(H5N1) - Cambodia - World Health Organization (WHO)", + "snippet": "On 20 August 2024, the World Health Organization (WHO) was notified by the country\u2019s International Health Regulations (IHR) National Focal Point (NFP) of a laboratory-confirmed case of human infection with avian influenza A(H5N1) virus (clade 2.3.2.1c) in a 15-year-old child in the Kingdom of Cambodia. From 2003 to 20 August 2024, 903 cases of human infections with avian influenza A(H5N1), including 464 deaths (CFR 51.4%), have been reported to WHO from 24 countries. Close analysis of the epidemiological situation, further characterization of the most recent influenza A(H5N1) viruses in both human and poultry populations, and serological investigations are critical to assess associated risks to public health and promptly adjust risk management measures.", + "rank": 7, + "retrieved_at": "2026-07-14T23:16:31.499225+00:00", + "published_date": "2024-09-02T17:03:45+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.5342465753424658, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5509401854845571, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "fbf6b21ff3eb43f388ccc52abaf174d5", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:16:28.549194+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8821917808219178, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5134365693865397, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "6c944880a4e54d868de875eb23ff7bf1", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 4, + "retrieved_at": "2026-07-14T23:16:28.549609+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30410958904109586, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5022587849910661, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "5e799374568f4cc5a6fb1e13a985d119", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 2, + "retrieved_at": "2026-07-14T23:16:30.672181+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2465753424657534, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.49357057772483626, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "6eddfdfec1dd4fb1893315648a2e8718", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 9, + "retrieved_at": "2026-07-14T23:16:29.508362+00:00", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.47505856660710744, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "e2073a7a53b54313b2d3376b4d985162", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "canonical_url": "https://ladysmithchronicle.com/national-news/bird-flu-measles-top-2025-concerns-for-canadas-chief-public-health-officer-7730548", + "domain": "ladysmithchronicle.com", + "title": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chronicle", + "snippet": "Bird flu, measles top 2025 concerns for Canada\u2019s chief public health officer - Ladysmith Chemainus Chronicle News As we enter 2025, Dr. Theresa Tam has her eye on H5N1 bird flu, an emerging virus that had its first human case in Canada this year. At the same time, Canada\u2019s chief public health officer is closely monitoring measles \u2014 a virus that was eliminated in this country more than two decades ago, but is making an accelerated resurgence. \u201cWhat I am particularly concerned about is that this virus has demonstrated the capability of a whole range of clinical outcomes, from asymptomatic infection \u2026 all the way to rare cases of severe illness,\u201d said Tam in a year-end interview on Dec. 18. News", + "rank": 1, + "retrieved_at": "2026-07-14T23:16:30.672054+00:00", + "published_date": "2024-12-27T19:45:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8520547945205479, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4712924359737939, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "49b1d352790a478dab6f7dcc3a93866e", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.theguardian.com/us-news/article/2024/may/24/bird-flu-outbreak-feces-test", + "canonical_url": "https://theguardian.com/us-news/article/2024/may/24/bird-flu-outbreak-feces-test", + "domain": "theguardian.com", + "title": "Scientists get creative in monitoring bird flu outbreak \u2013 by testing feces - The Guardian US", + "snippet": "\u201cThe more people you have on the ground that help us to generate the data now and understand what\u2019s happening, the better this is for us and also for the wildlife,\u201d said Christine Marizzi, a co-author of the study and director of community science for BioBus, the mobile research lab working with students. Scientists get creative in monitoring bird flu outbreak \u2013 by testing feces With second human case of H5N1 reported, CDC launches dashboard to monitor wastewater, and recruits students to help Amid widespread gaps in US testing for H5N1, a type of bird flu, and as a second case among humans has been detected, scientists are turning to more creative ways of monitoring the outbreak \u2013 especially in human and animal feces. The dashboard helps identify hotspots in the US where flu A is surging \u2013 and, since flu rates among people are low this time of year, such a surge can alert scientists and the public to potential outbreaks of H5N1. \u201cI\u2019m really pleased to see that they\u2019re sharing the data that they have,\u201d said Marc Johnson, a professor at the University of Missouri School of Medicine and the lab lead for wastewater surveillance in Missouri. Dairy cow infections are usually detected by testing their milk, since the udders have proven to have high concentrations of the flu virus \u2013 but in other animals that aren\u2019t lactating, it might be difficult to know where to test the animal to get accurate results.", + "rank": 9, + "retrieved_at": "2026-07-14T23:16:30.674893+00:00", + "published_date": "2024-05-24T12:13:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2575342465753425, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.45720270001985314, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "8496886a0fe34e49b822280e8ad9f53d", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://abcnews.go.com/GMA/Food/avian-flu-virus-detected-sour-cream-cottage-cheese/story?id=109825319", + "canonical_url": "https://abcnews.go.com/GMA/Food/avian-flu-virus-detected-sour-cream-cottage-cheese/story?id=109825319", + "domain": "abcnews.go.com", + "title": "No avian flu virus detected in sour cream, cottage cheese, powdered infant formula: FDA - ABC News", + "snippet": "\" Editor\u2019s Picks Traces of H5N1 bird flu virus found in some milk, pasteurized dairy: FDA Avian flu hits dairy producing cattle farms Largest US egg producer temporarily halts production due to avian flu at Texas facility To further ensure the safety of other milk-derived products for the youngest population, the FDA said it \"tested samples of retail powdered infant formula and powdered milk products marketed as toddler formula,\" all of which came back negative, \"indicating no detection of viral fragments or virus. \"We are looking to grow H5N1 virus stock from the one human case in Texas to use for additional laboratory experiments to learn how the virus reproduces in both human and cows,\" he said, which will ultimately help the CDC \"assess the severity of illness and transmissibility of the virus under different scenarios. How the CDC is monitoring H5N1 bird flu, local testing of those exposed In the course of this investigation, the CDC said Wednesday local public health partners had monitored over 100 people, and if anyone presents with symptoms, the next step is to conduct local testing. The agency said at the time it had \"confirmed one human HPAI A(H5N1) infection that had exposure to dairy cattle in Texas that were presumed to be infected with the virus,\" adding that it was \"working with state health departments to continue to monitor workers who may have been in contact with infected or potentially infected birds/animals and test those people who develop symptoms. The CDC said it is monitoring flu surveillance data, \"especially in areas where H5N1 viruses have been detected in dairy cattle or other animals for any unusual trends in flu-like illness, flu or conjunctivitis,\" Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC, said in his update Wednesday. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:16:30.674846+00:00", + "published_date": "2024-05-01T20:37:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.19452054794520546, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.45298466349017275, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "fddc59864eca48129aa8678604b65f48", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.theguardian.com/world/article/2024/jun/28/michigan-bird-flu", + "canonical_url": "https://theguardian.com/world/article/2024/jun/28/michigan-bird-flu", + "domain": "theguardian.com", + "title": "Michigan leading US on monitoring and studying bird flu outbreak - The Guardian", + "snippet": "Michigan leading US on monitoring and studying bird flu outbreak Daily text messages and phone calls check on farm workers who work with cows that have tested positive for H5N1 As questions swirl about the spread of bird flu among livestock and people, one US state \u2013 Michigan \u2013 has taken the lead on monitoring and studying the outbreak. \u201cMichigan has been doing a lot of work to really understand what\u2019s going on with H5N1,\u201d said Marisa Eisenberg, associate professor of epidemiology and co-director of the Michigan Public Health Integrated Center for Outbreak Analytics and Modeling at the University of Michigan. Michigan officials announced new biosecurity rules for farms following the first detection of bird flu in cows, and soon began promoting seasonal flu vaccines among dairy and poultry workers to prevent the possibility of flu variants mixing together and causing more serious illness. \u201cWhen you\u2019re working with a large animal and there\u2019s risk for injury, anything that blocks your vision can also be difficult to use.\u201d Officials in Michigan are being careful not to disclose details that might identify affected farms or individuals while also announcing new cases. \u201cBecause if you put your head in the sand, ostrich-style, then it will continue to spread and continue to cause a wider range of problems \u2013 from a public health perspective, from a milk-production and economic perspective.\u201d ", + "rank": 6, + "retrieved_at": "2026-07-14T23:16:30.672252+00:00", + "published_date": "2024-06-28T11:25:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.35342465753424657, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4359946396664682, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "1a38791f89f44a87ae452cff7bbc133c", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "domain": "cidrap.umn.edu", + "title": "CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. A wastewater dashboard; states report more H5N1 in dairy herds Smederevac/iStock The Centers for Disease Control and Prevention (CDC) today unveiled a new influenza A wastewater tracker, part of its surveillance for H5N1 avian influenza, as three states reported more detections in dairy herds. H5N1 detected in 4 more dairy herds In other developments, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today reported four more H5N1 detections in dairy herds, raising the total to 46. A wastewater dashboard; states report more H5N1 in dairy herds The tracker will help with surveillance, but it doesn't distinguish the influenza A subtype or determine the source of the virus. ", + "rank": 6, + "retrieved_at": "2026-07-14T23:16:29.508155+00:00", + "published_date": "2024-05-14T20:54:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23013698630136992, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4223615247170935, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "9f0d5533d31e4d4cbeac791bab2386fc", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-outbreak-map-reveals-confirmed-us-human-cases-1976744", + "canonical_url": "https://newsweek.com/bird-flu-outbreak-map-reveals-confirmed-us-human-cases-1976744", + "domain": "newsweek.com", + "title": "Bird Flu Outbreak: Map Reveals Confirmed US Human Cases - Newsweek", + "snippet": "Bird Flu Outbreak: Map Reveals Confirmed US Human Cases - Newsweek Less than a month after reporting its first human case of bird flu, California has confirmed that 16 people have now been infected with the disease, and a Newsweek map shows how the numbers compare with the rest of the U.S. Nationwide, the total number of people infected with the avian influenza H5N1 in 2024 now stands at 36. \"The current bird flu situation in the U.S. is quite disturbing and odd,\" Jeremy Rossman, senior lecturer in virology at the University of Kent, U.K, previously told Newsweek when California reported its first cases among farmworkers.", + "rank": 2, + "retrieved_at": "2026-07-14T23:16:28.549378+00:00", + "published_date": "2024-10-29T17:39:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6904109589041096, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.41925848719475883, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "499cddcd88fc46c4a562f574b78019e4", + "question_id": "q1", + "query_id": "632571d886c8424086b9fc49d160d69f", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:16:31.499183+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30958904109589036, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4170458606313282, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "f4942b06959b4f87b47d3d738f79837d", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 6, + "retrieved_at": "2026-07-14T23:16:28.549777+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3232876712328767, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.41211137581893986, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "945ec5c59c2b4503ad9196ae98c0dc82", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://nypost.com/2024/11/23/lifestyle/first-bird-flu-case-in-a-child-in-the-us-confirmed-by-cdc-in-california/?utm_campaign=nypost&utm_medium=referral", + "canonical_url": "https://nypost.com/2024/11/23/lifestyle/first-bird-flu-case-in-a-child-in-the-us-confirmed-by-cdc-in-california", + "domain": "nypost.com", + "title": "First bird flu case in a child in the US confirmed by CDC in California - New York Post", + "snippet": "First bird flu case in a child in the US confirmed by CDC in California\t The US Centers for Disease Control and Prevention on Friday confirmed the country\u2019s first case of H5N1 bird flu infection in a child, who experienced mild symptoms and is recovering from their illness. The CDC affirmed that currently there was no evidence of person-to-person spread of H5N1 bird flu from this child to others, but said it will continue contact tracing. So far, there has been no person-to-person spread associated with any of the H5N1 bird flu cases reported in the US, the CDC said. Including this child\u2019s case, 55 human cases of H5 bird flu have now been reported in the country this year, with 29 in California, according to the CDC.", + "rank": 7, + "retrieved_at": "2026-07-14T23:16:28.549898+00:00", + "published_date": "2024-11-23T08:35:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.7589041095890411, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.411666808474432, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "77982a9804a84e89b7f41543afb49100", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 2, + "retrieved_at": "2026-07-14T23:16:29.507940+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9835616438356164, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.40944312090530083, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "2d4285f313ab4d2baf3dd890924059d5", + "question_id": "q1", + "query_id": "632571d886c8424086b9fc49d160d69f", + "engine": "tavily", + "url": "https://www.aol.com/severe-bird-flu-u-latest-072206554.html", + "canonical_url": "https://aol.com/severe-bird-flu-u-latest-072206554.html", + "domain": "aol.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - AOL", + "snippet": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 3, + "retrieved_at": "2026-07-14T23:16:31.499151+00:00", + "published_date": "2024-12-19T08:48:38+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4082310899344848, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "2524a6b2d3f94d95ba4c1afae295ef32", + "question_id": "q1", + "query_id": "9f29b0d7ebf041a799226fd19fd99c47", + "engine": "tavily", + "url": "https://www.latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "canonical_url": "https://latimes.com/environment/story/2024-11-15/h5n1-bird-flu-infects-six-more-humans-in-california-oregon", + "domain": "latimes.com", + "title": "H5N1 bird flu infects five more humans in California, and one in Oregon - Los Angeles Times", + "snippet": "H5N1 bird flu infects six more humans in California, Oregon - Los Angeles Times H5N1 bird flu infects five more humans in California, and one in Oregon Health officials have announced six more H5N1 bird flu infections in humans: five in California and the first known case in Oregon. Five new human cases of H5N1 bird flu have been detected in California. As H5N1 bird flu spreads among California dairy herds and southward-migrating birds, health officials announced Friday that six more human cases of infection: five in California and one in Oregon \u2014 the state\u2019s first. Cases of H5N1 bird flu in U.S. dairy and poultry workers have largely been mild. Public health officials maintain the risk of H5N1 bird flu infection remains low.", + "rank": 9, + "retrieved_at": "2026-07-14T23:16:32.278578+00:00", + "published_date": "2024-11-16T01:21:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.7397260273972603, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4075957911455232, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "84e0baecdf374ba39eb9711fd765bb61", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 3, + "retrieved_at": "2026-07-14T23:16:28.549520+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8493150684931507, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.39058368076235855, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "16c8841b03dd4ad5a151f39c7427160a", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "domain": "cidrap.umn.edu", + "title": "Wastewater testing finds H5N1 avian flu in 9 Texas cities - University of Minnesota Twin Cities", + "snippet": "In other developments: Related news Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain FDA finds no live H5N1 avian flu virus in sour cream or cottage cheese, will assess raw milk This week's top reads Study: HHS's COVID vaccine campaign saved $732 billion in averted infections, costs Researchers say the campaign encouraged 22 million Americans to complete their primary COVID-19 vaccine series, preventing nearly 2.6 million infections. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Wastewater testing finds H5N1 avian flu in 9 Texas cities varius-studios/ iStock Researchers who sequenced viruses from wastewater samples from 10 Texas cities found H5N1 avian flu virus in 9 of them, sometimes at levels that rivaled seasonal flu. On X, Mike Tisza, PhD, the first author of the study and assistant professor of virology and microbiology at Baylor, said it's still not clear where the viruses came from, but the evidence tilts toward an animal source, because the researchers didn't see any mutations with known links to human adaptation. Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals Monitoring of about 70 farm workers found no symptoms, and the state's wastewater sampling pilot has found no flu rise. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:16:30.672223+00:00", + "published_date": "2024-05-13T20:52:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.22739726027397256, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3879571173317451, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "61f70c66fe754cb5988141b63eb462bd", + "question_id": "q1", + "query_id": "cca1e8a90e754d26b51abe6eee5d40b2", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "domain": "cidrap.umn.edu", + "title": "H5 influenza wastewater dashboard launches | CIDRAP - University of Minnesota Twin Cities", + "snippet": "In other avian flu developments: Related news Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker Australia reports imported human H5N1 avian flu case and unrelated high-path poultry outbreak Survey: States and territories able to test for highly pathogenic H5N1 This week's top reads Alpacas infected with H5N1 avian flu in Idaho In other developments, H5N1 was detected in feral cats in New Mexico and more dairy herds in affected states. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Iowa disaster proclamation Governor Reynolds yesterday announced the disaster proclamation for highly pathogenic avian flu in Cherokee County, the same day the Iowa Department of Agriculture and Land Stewardship\u00a0reported an outbreak at a commercial turkey farm in the county. Main navigation H5 influenza wastewater dashboard launches Luke Jones/Flickr cc WastewaterSCAN, a national wastewater monitoring system based at Stanford University in partnership with Emory University, today launched an\u00a0H5 avian influenza wastewater dashboard today, which shows detections at about a dozen locations, mostly in Texas and Michigan. Second dairy farm worker infected with H5 avian flu in Michigan Unlike similar earlier cases in the United States, the newly reported patient had respiratory symptoms. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:16:30.672280+00:00", + "published_date": "2024-06-03T20:48:47+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2849315068493151, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.38513911341785073, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "c1b15a7dbdbe4811b72e7b5f6932c156", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "domain": "cidrap.umn.edu", + "title": "H5N1 confirmed in 5 more US dairy herds, more cats - University of Minnesota Twin Cities", + "snippet": "Related news H5N1 strikes dairy herd in Michigan, large poultry farm in Colorado Animal experiments shed more light on behavior of H5N1 from dairy cows CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit HHS awards Moderna $176 million to develop mRNA H5 avian flu vaccine More evidence pasteurization inactivates H5N1 avian flu virus in milk USDA spells out financial assistance to offset H5N1-linked milk losses Scientists expand H5N1 testing in dairy products, launch human serology study Experiments show H5N1 risk to dairy cows not exclusive to subtype infecting US herds This week's top reads CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit The infected farm worker is from Colorado, which has had the most affected dairy herds in the past month. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation H5N1 confirmed in 5 more US dairy herds, more cats Khaligo/iStock The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today added five more dairy herds in three states to its list of H5N1 avian flu outbreak confirmations. H5N1 confirmed in 5 more US dairy herds, more cats The additional cat detections are from 2 states battling the virus in cows: Minnesota and Michigan. More cat and wild-bird positives In related developments, APHIS confirmed H5N1 detections in three more domestic cats, two from Minnesota and one from Michigan, raising the total since 2022 to 33. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:16:29.508079+00:00", + "published_date": "2024-07-10T19:44:27+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.38630136986301367, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.38428231089934484, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "5252242f618742a4802fbe191f2c3edd", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/study-shows-not-surprising-fatal-spread-avian-flu-ferrets", + "domain": "cidrap.umn.edu", + "title": "Study shows 'not surprising' fatal spread of avian flu in ferrets - University of Minnesota Twin Cities", + "snippet": "International avian flu developments In global developments: Related news Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Study shows 'not surprising' fatal spread of avian flu in ferrets Vital Hil/iStock Late last week the Centers for Disease Control and Prevention (CDC) published a study showing that the current strain of H5N1 (A/Texas/37/2024) avian flu was fatal in six ferrets used as part of an experimental infection study. Household spread in pet ferrets In related news, a study out of Poland described the first documented cases of natural H5N1 cases in five pet ferrets, which occurred at the same time the country saw an uptick of H5 cases in cats in 2023. \" In Iowa, which confirmed high-path avian flu in dairy cattle last week, officials from the Iowa Department of Agriculture and Land Stewardship are requesting resources from the USDA and announcing additional response measures, including providing compensation for culled dairy cattle at a fair market value and compensation for lost milk production at a minimum of 90% of fair market value. ", + "rank": 10, + "retrieved_at": "2026-07-14T23:16:28.550107+00:00", + "published_date": "2024-06-10T20:42:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.30410958904109586, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3806283502084574, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "a073944035af4887893973120275997f", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.yahoo.com/news/severe-bird-flu-u-latest-072206992.html", + "canonical_url": "https://yahoo.com/news/severe-bird-flu-u-latest-072206992.html", + "domain": "yahoo.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - Yahoo! Voices", + "snippet": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 8, + "retrieved_at": "2026-07-14T23:16:28.549962+00:00", + "published_date": "2024-12-19T07:22:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3769810899344848, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "0c4f4814c5524b98975d2c44e755b56b", + "question_id": "q1", + "query_id": "9f29b0d7ebf041a799226fd19fd99c47", + "engine": "tavily", + "url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california/", + "canonical_url": "https://nypost.com/2024/10/11/us-news/human-bird-flu-cases-grow-with-2-more-confirmed-in-california", + "domain": "nypost.com", + "title": "Human bird flu cases grow with 2 more confirmed in California - New York Post", + "snippet": "U.S. and California health officials confirmed two new cases of H5N1\u00a0bird flu\u00a0in dairy farm workers in the state on Friday, bringing the total of infected dairy workers in that state to six, and the total of human cases nationwide this year to 20. Health officials in the U.S. and California confirmed two more cases of H5N1 bird flu in dairy farm workers in the state on Friday. Six dairy workers in California have now contracted the virus, and the total number of human cases of bird flu nationwide is now at 20. California health officials said they expect additional cases to be identified among individuals who have regular contact with infected dairy cattle.", + "rank": 3, + "retrieved_at": "2026-07-14T23:16:32.271997+00:00", + "published_date": "2024-10-12T01:22:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.6438356164383562, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37003573555687913, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "f7f8f6ce0a8f48638a087aa797df6d0b", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 8, + "retrieved_at": "2026-07-14T23:16:29.508270+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35714189994044077, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "0ee301dd34774f338c12c3a2ac41e890", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 10, + "retrieved_at": "2026-07-14T23:16:29.508414+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8301369863013699, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3536658725431805, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "06135912968b4385aa35fa32668992ee", + "question_id": "q1", + "query_id": "2bb8fdbaeda34d46b9594d98931dc80e", + "engine": "tavily", + "url": "https://www.democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007/", + "canonical_url": "https://democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007", + "domain": "democratandchronicle.com", + "title": "Have the flu or know someone with it? Flu cases surge to highest levels in 15 years, CDC says - Democrat & Chronicle", + "snippet": "Flu cases 2025: Levels have increased to highest in 15 years, CDC says Flu cases surge to highest levels in 15 years, CDC says There are 12 states in the U.S. that have \"'very high\" flu activity, according to the CDC. For the first time this flu season, overall levels of the respiratory illness have reached \"very high\" activity despite a decrease in COVID-19 infections in recent months, according to the CDC. One of the states where flu levels are growing is Kentucky, where the probability of an influenza epidemic is growing\u00a0by 92.45%, the CDC said. The CDC still considers the\u00a0general population at \"low\" risk\u00a0for catching bird flu, but one 65-year-old Louisiana resident with complicating health conditions did die from the disease.", + "rank": 7, + "retrieved_at": "2026-07-14T23:16:29.508216+00:00", + "published_date": "2025-02-11T19:26:32+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9780821917808219, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.33575852973708836, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "3852577efb1b4a25be428cbd66b4f474", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 5, + "retrieved_at": "2026-07-14T23:16:28.549690+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.335080405002978, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "9ee7951b23bc4b9e88600395448b9f35", + "question_id": "q1", + "query_id": "9f29b0d7ebf041a799226fd19fd99c47", + "engine": "tavily", + "url": "https://www.newsweek.com/canadian-teen-worrisome-mutations-bird-flu-2008287", + "canonical_url": "https://newsweek.com/canadian-teen-worrisome-mutations-bird-flu-2008287", + "domain": "newsweek.com", + "title": "Teen Hospitalized for Bird Flu Shows 'Worrisome' Change in People - Newsweek", + "snippet": "Teen Hospitalized for Bird Flu Shows 'Worrisome' Change in People - Newsweek A Canadian teen who contracted the H5N1 bird flu in early November has fully recovered after a prolonged battle with the disease. However, genetic analysis of the virus that infected her revealed alarming mutations that could potentially enhance the virus's ability to target human cells and cause severe illness. With 66 human cases reported in the U.S. in 2024, experts are increasingly worried about the virus's evolving potential and its implications for future outbreaks. A Canadian teen who contracted H5N1 bird flu in November 2024 has fully recovered, but genetic analysis revealed concerning mutations in the virus that could increase its ability to target human cells and cause more severe disease.", + "rank": 5, + "retrieved_at": "2026-07-14T23:16:32.272876+00:00", + "published_date": "2025-01-01T15:52:15+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8657534246575342, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3330970815961882, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "32fec108833b478abcbb9b39750fa5fb", + "question_id": "q1", + "query_id": "9f29b0d7ebf041a799226fd19fd99c47", + "engine": "tavily", + "url": "https://insidemedicine.substack.com/p/defcon-3-for-h5n1-defcon-1-is-the?utm_campaign=post&utm_medium=web", + "canonical_url": "https://insidemedicine.substack.com/p/defcon-3-for-h5n1-defcon-1-is-the", + "domain": "insidemedicine.substack.com", + "title": "DEFCON 3 for H5N1. (DEFCON 1 is the worst.) - substack.com", + "snippet": "Inside Medicine DEFCON 3 for H5N1. Inside Medicine DEFCON 3 for H5N1. All told, I think a severe case of H5N1 coming on the cusp of the forthcoming peak of flu season merits an increase in our threat assessment of the overall situation. As I outlined in the Slate piece, I\u2019m worried about the possibility of a novel variant of H5N1 emerging from a coinfection\u2014that is, a single person getting seasonal flu and bird flu at the same time, which is a recipe for a potentially horrific flu pandemic. At some point, the federal government should also consider increasing our supplies of H5N1 vaccines and consider administering them to high-risk individuals like farmworkers (in whom most of the US cases have been detected so far). Inside Medicine DEFCON 3 for H5N1.", + "rank": 8, + "retrieved_at": "2026-07-14T23:16:32.273281+00:00", + "published_date": "2024-12-31T18:34:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3215731089934485, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "2f2729fdd3fc4e459d7dc7b28c0932a4", + "question_id": "q1", + "query_id": "632571d886c8424086b9fc49d160d69f", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:16:31.499250+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8273972602739725, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3159281318244987, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + }, + { + "id": "51a1b2a552aa4724ab7f90d957bc11a4", + "question_id": "q1", + "query_id": "d21af7db4e6c4792a9c1057baf9f99fe", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 9, + "retrieved_at": "2026-07-14T23:16:28.550042+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2849315068493151, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3008119912646417, + "published_date_source": "backend", + "cutoff_applied": "2025-02-20T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/documents.json b/data/runs_ab_with_history/q1/traj_20250224/documents.json new file mode 100644 index 0000000..914592d --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/documents.json @@ -0,0 +1,667 @@ +[ + { + "id": "doc-ed3a4036b0e149d29cd9191db352a1a4", + "result_id": "ed3a4036b0e149d29cd9191db352a1a4", + "source_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "fetched_at": "2026-07-14T23:25:34.569918+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "title": "Avian influenza A(H5N1) virus", + "published_date": "2025-02-09T19:12:18+00:00", + "language": "en", + "page_count": null, + "char_count": 1033, + "token_count": 217, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-ed3a4036b0e149d29cd9191db352a1a4-c0", + "chunk_index": 0, + "text": "Avian influenza A(H5N1) is a subtype of influenza virus that infects birds and mammals, including humans in rare instances. The goose/Guangdong-lineage of H5N1 avian influenza viruses first emerged in 1996 and have been causing outbreaks in birds since then. Since 2020, a variant of these viruses belonging to the H5 clade 2.3.4.4b has led to an unprecedented number of deaths in wild birds and poultry in many countries in Africa, Asia and Europe. In 2021, the virus spread to North America, and in 2022, to Central and South America.\nInfections in humans can cause severe disease with a high mortality rate. The human cases detected thus far are mostly linked to close contact with infected birds and other animals and contaminated environments. This virus does not appear to transmit easily from person to person, and sustained human-to-human transmission has not been reported.", + "chunk_type": "prose", + "heading": "Avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 193, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ed3a4036b0e149d29cd9191db352a1a4-c1", + "chunk_index": 1, + "text": "Surveillance", + "chunk_type": "prose", + "heading": "Technical guidance", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ed3a4036b0e149d29cd9191db352a1a4-c2", + "chunk_index": 2, + "text": "Zoonotic influenza: candidate vaccine viruses and potency testing reagents\nRecommendations for influenza vaccine composition", + "chunk_type": "prose", + "heading": "Technical guidance > Laboratory and virology > Vaccines", + "page_number": null, + "table_data": null, + "token_count": 20, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ed3a4036b0e149d29cd9191db352a1a4-c3", + "chunk_index": 3, + "text": "Related content", + "chunk_type": "prose", + "heading": "Technical guidance > Background and summary of human infection with avian influenza A(H5N1) virus", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-4bb25f1d7e9447f6b32ce883ced5338f", + "result_id": "4bb25f1d7e9447f6b32ce883ced5338f", + "source_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "fetched_at": "2026-07-14T23:25:48.249089+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "title": "HPAI Confirmed Cases in Livestock | Animal and Plant Health Inspection Service", + "published_date": "2025-02-22T17:50:12+00:00", + "language": "en", + "page_count": null, + "char_count": 492, + "token_count": 99, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-4bb25f1d7e9447f6b32ce883ced5338f-c0", + "chunk_index": 0, + "text": "This map is updated each weekday to depict the number of new confirmed cases in livestock in the last 30 days and the cumulative number of confirmed cases in livestock by State.\nFor information related to the National Milk Testing Strategy, visit Testing.\nUsers may need to refresh the page to see the latest map and table data. To refresh the page, hold down the SHIFT key and click the Reload Page button in the upper left corner of your browser. You can also use SHIFT+F5 on your keyboard.", + "chunk_type": "prose", + "heading": "HPAI Confirmed Cases in Livestock", + "page_number": null, + "table_data": null, + "token_count": 99, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-e87e055a74ff4d60ace711686392c638", + "result_id": "e87e055a74ff4d60ace711686392c638", + "source_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "domain": "cdc.gov", + "fetched_at": "2026-07-14T23:25:53.523014+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "title": "H5 Bird Flu: Current Situation", + "published_date": "2025-02-22T22:00:04+00:00", + "language": "en", + "page_count": null, + "char_count": 1656, + "token_count": 387, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-e87e055a74ff4d60ace711686392c638-c0", + "chunk_index": 0, + "text": "\u2022 H5 bird flu is widespread in wild birds worldwide and is causing outbreaks in poultry and U.S. dairy cows with several recent human cases in U.S. dairy and poultry workers.\n\u2022 While the current public health risk is low, CDC is watching the situation carefully and working with states to monitor people with animal exposures.\n\u2022 CDC is using its flu surveillance systems to monitor for H5 bird flu activity in people.", + "chunk_type": "prose", + "heading": "What to know", + "page_number": null, + "table_data": null, + "token_count": 83, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e87e055a74ff4d60ace711686392c638-c1", + "chunk_index": 1, + "text": "When a case tests positive for H5 at a public health laboratory but testing at CDC is not able to confirm H5 infection, per Council of State and Territorial Epidemiologists (CSTE) guidance, a case is reported as probable.\nConfirmed and probable cases are typically updated by 5 PM EST on Mondays (for cases confirmed by CDC on Friday, Saturday, or Sunday), Wednesdays (for cases confirmed by CDC on Monday or Tuesday), and Fridays (for cases confirmed by CDC on Wednesday and Thursday). Affected states may report cases more frequently.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Situation summary of confirmed and probable human cases since 2024", + "page_number": null, + "table_data": null, + "token_count": 113, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-e87e055a74ff4d60ace711686392c638-c2", + "chunk_index": 2, + "text": "\u2022 12,064 wild birds detected as of 2/18/2025 | Full Report\n\u2022 51 jurisdictions with bird flu in wild birds\n\u2022 162,801,168 poultry affected as of 2/21/2025 | Full Report\n\u2022 51 jurisdictions with outbreaks in poultry\n\u2022 973 dairy herds affected as of 2/21/2025 | Full Report\n\u2022 16 states with outbreaks in dairy cows\nThese data will be updated daily, Monday through Friday, after 4 p.m. to reflect any new data.\nCumulative data on wild birds have been collected since January 20, 2022. Cumulative data on poultry have been collected since February 8, 2022. Cumulative data on humans in the U.S. have been collected since April 28, 2022. Cumulative data on dairy cattle have been collected since March 25, 2024.", + "chunk_type": "prose", + "heading": "What to know > Current situation > Detections in Animals", + "page_number": null, + "table_data": null, + "token_count": 191, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [ + "February 25, 2024", + "March 24, 2024", + "January 20, 2022", + "February 8, 2022", + "April 28, 2022", + "March 25, 2024", + "2/18/2025", + "2/21/2025" + ], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-ece1ab107c424606bd711bf9e11b7c6d", + "result_id": "ece1ab107c424606bd711bf9e11b7c6d", + "source_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "fetched_at": "2026-07-14T23:26:14.340743+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "title": "Human-animal interface", + "published_date": "2025-02-21T23:54:53+00:00", + "language": "en", + "page_count": null, + "char_count": 1579, + "token_count": 280, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-ece1ab107c424606bd711bf9e11b7c6d-c0", + "chunk_index": 0, + "text": "Birds are the natural hosts for avian influenza viruses. Avian influenza refers to an infectious disease of birds caused by infection with avian influenza viruses. Avian influenza viruses can also infect non-avian species including wild and domestic (including companion and farmed) terrestrial and marine mammals. Avian influenza viruses primarily spread from infected birds to humans through close contact with birds or contaminated environments, such as in backyard poultry farm settings and at markets where birds are sold.\nThere have also been limited reports of transmission from other infected animals to humans.\nSwine influenza is a respiratory disease of pigs caused by influenza A viruses. Most swine influenza viruses do not cause disease in humans, but some countries have reported cases of human infection from certain swine influenza viruses. Close proximity to infected pigs or visiting locations where pigs are exhibited has been reported for most human cases, but some limited human-to-human transmission has occurred.\nJust like birds and pigs, other animals such as horses and dogs, can be infected with their own influenza viruses (canine influenza viruses, equine influenza viruses, etc.).\nDive in\nTechnical guidance", + "chunk_type": "prose", + "heading": "Human-animal interface", + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ece1ab107c424606bd711bf9e11b7c6d-c1", + "chunk_index": 1, + "text": "Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nInfluenza Investigations & Studies (Unity Studies)", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations", + "page_number": null, + "table_data": null, + "token_count": 25, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ece1ab107c424606bd711bf9e11b7c6d-c2", + "chunk_index": 2, + "text": "Clinical care of severe acute respiratory infections \u2013 Tool kit\nGuidelines for the clinical management of severe illness from influenza virus infections", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Clinical management", + "page_number": null, + "table_data": null, + "token_count": 24, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ece1ab107c424606bd711bf9e11b7c6d-c3", + "chunk_index": 3, + "text": "Five keys to safer food manual", + "chunk_type": "prose", + "heading": "Human-animal interface > Surveillance and investigations > Food safety", + "page_number": null, + "table_data": null, + "token_count": 6, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-ece1ab107c424606bd711bf9e11b7c6d-c4", + "chunk_index": 4, + "text": "Training materials", + "chunk_type": "prose", + "heading": "Human-animal interface > Terminology", + "page_number": null, + "table_data": null, + "token_count": 2, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback_fallback_to_live", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-fa00521cbc984310baa032578a0b3525", + "result_id": "fa00521cbc984310baa032578a0b3525", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "fetched_at": "2026-07-14T23:26:16.765988+00:00", + "document_type": "pdf", + "status": "success", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "published_date": "2025-01-27T00:00:00", + "language": null, + "page_count": 8, + "char_count": 27993, + "token_count": 6297, + "error_message": null, + "http_status": 200, + "content_type": "application/pdf", + "chunks": [ + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c0", + "chunk_index": 0, + "text": "1", + "chunk_type": "prose", + "heading": null, + "page_number": 1, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c1", + "chunk_index": 1, + "text": "\u2022\nNew human cases 1 2 : From 13 December 2024 to 20 January 2025, the detection of influenza\nA(H5) virus in five humans, influenza A(H9N2) virus in two humans, and influenza A(H10N3) virus\nin one human were reported officially. Additionally, five human cases of infection with influenza\nA(H5) viruses were detected.\n\u2022\nCirculation of influenza viruses with zoonotic potential in animals: High pathogenicity avian\ninfluenza (HPAI) events in poultry and non-poultry continue to be reported to the World\nOrganisation for Animal Health (WOAH). 3 The Food and Agriculture Organization of the United\nNations (FAO) also provides a global update on avian influenza viruses with pandemic potential. 4\n\u2022\nRisk assessment 5 : Based on information available at the time of the risk assessment, the overall\npublic health risk from currently known influenza viruses at the human-animal interface has not\nchanged remains low. Sustained human to human transmission has not been reported from\nthese events and the occurrence of sustained human-to-human transmission of these viruses is\ncurrently considered unlikely. Although human infections with viruses of animal origin are\ninfrequent, they are not unexpected at the human-animal interface.\n\u2022\nIHR compliance: All human infections caused by a new influenza subtype are required to be\nreported under the International Health Regulations (IHR, 2005). 6 This includes any influenza A\nvirus that has demonstrated the capacity to infect a human and its haemagglutinin gene (or\nprotein) is not a mutated form of those, i.e. A(H1) or A(H3), circulating widely in the human\npopulation. Information from these notifications is critical to inform risk assessments for\ninfluenza at the human-animal interface.\nAvian influenza viruses in humans\nCurrent situation:\nSince the last risk assessment of 12 December 2024, influenza A(H5) virus has been detected in nine\nhumans in the United States of America (USA) and one laboratory-confirmed human case of A(H5N1)\ninfection was reported to WHO from Cambodia.\n1 This summary and assessment covers information confirmed during this period and may include information\nreceived outside of this period.\n2 For epidemiological and virological features of human infections with animal influenza viruses not reported in\nthis assessment, see the reports on human cases of influenza at the human-animal interface published in the\nWeekly Epidemiological Record here .\n3 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n4 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .\n5 World Health Organization (2012). Rapid risk assessment of acute public health events. World Health\nOrganization. Available at: https://iris.who.int/handle/10665/70810 .\n6 World Health Organization. Case definitions for the 4 diseases requiring notification to WHO in all\ncircumstances under the International Health Regulations (2005). Case definitions for the four diseases\nrequiring notification in all circumstances under the International Health Regulations (2005).", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 1, + "table_data": null, + "token_count": 726, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c2", + "chunk_index": 2, + "text": "2\nA(H5), USA\nOn 14 December 2024, the USA notified WHO of one laboratory-confirmed human case of infection\nwith influenza A(H5) in an adult aged over 65 years from the state of Louisiana. The patient, with\nunderlying conditions, developed symptoms and sought care at an emergency department in early\nDecember 2024. Due to worsening symptoms, the patient returned to the emergency department a\nfew days later, was hospitalized in critical condition with pneumonia, and started on antiviral\ntreatment. Unfortunately, the patient passed away. No household contacts of the case tested\npositive for influenza viruses. The individual owned backyard poultry and had noted deaths in\ndomestic and wild birds on the property prior to symptom onset. A(H5N1) viruses were detected in\npoultry on the property.\nThe viruses identified in two clinical samples from the patent were identified as influenza A(H5N1)\nviruses belonging to the clade 2.3.4.4b and the genotype D1.1. Deep sequencing of the genetic\nsequences from the two clinical specimens were compared to A(H5N1) virus sequences from dairy\ncows, wild birds, poultry and other human cases in the USA and Canada. The hemagglutinin (HA)\ngene sequences of the viruses from the clinical specimens are closely related to other D1.1 viruses\nrecently detected in wild birds and poultry in the Louisiana and other parts of the USA and in recent\nhuman cases detected in Canada and the USA, as well as to existing influenza A(H5N1) candidate\nvaccine viruses. 7\nSome changes in the HA gene segment of one of the clinical specimens from the patient were\ndetected at a low frequency. These changes have rarely been identified in specimens from previous\nhuman infections with A(H5N1) viruses and were not detected in specimens from the poultry on the\nproperty of the patient. It is possible that these changes arise during viral replication in the infected\nhuman cases. No changes in the polymerase genes associated with adaptation to mammals were\nidentified. No changes associated with known or suspected markers of reduced susceptibility to\nantiviral drugs were identified. 8 , 9 , 10\nBetween 20 and 21 December 2024, the USA notified WHO of two additional laboratory-confirmed\nhuman case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin. The\ncases developed symptoms in December 2024 and reported their illness to public health officials as\npart of active monitoring. The cases were not hospitalized and have recovered. Both cases were\nexposed to influenza A(H5N1) while working at poultry facilities.\nOn 15 January 2025, the USA notified WHO of one additional laboratory-confirmed human case of\ninfection with influenza A(H5) from the state of California. The case occurred in a child less than 18\nyears old with no known contact with influenza A(H5N1) virus-infected animals or humans. The\ninvestigation into the source of infection and contact monitoring around this case was ongoing at\nthe time of reporting, and thus far, no human-to-human transmission has been identified. Additional\n7 WHO. Zoonotic influenza: candidate vaccine viruses and potency testing reagents. Available at:\nhttps://www.who.int/teams/global-influenza-programme/vaccines/who-recommendations/zoonotic-\ninfluenza-viruses-and-candidate-vaccine-viruses .\n8 US CDC. CDC Confirms First Severe Case of H5N1 Bird Flu in the United States, 18 Dec 2024. Available at:\nhttps://www.cdc.gov/media/releases/2024/m1218-h5n1-flu.html .\n9 US CDC. Genetic Sequences of Highly Pathogenic Avian Influenza A(H5N1) Viruses Identified in a Person in\nLouisiana, 26 Dec 2024. Available at: https://www.cdc.gov/bird-flu/spotlights/h5n1-response-12232024.html .\n10 US CDC. First H5 Bird Flu Death Reported in United States, 6 Jan 2025. Available at:\nhttps://www.cdc.gov/media/releases/2025/m0106-h5-birdflu-death.html .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 2, + "table_data": null, + "token_count": 902, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c3", + "chunk_index": 3, + "text": "3\nanalysis including genetic sequencing of the virus from the specimen from this case was underway at\nthe time of reporting. 11\nFive additional cases of influenza A(H5) were detected in California in individuals aged over 18 years\nwho worked at commercial dairy cattle farms in areas where highly pathogenic avian influenza\n(HPAI)(H5N1) viruses had been detected in cows. The individuals had mild symptoms. 12 , 13\nLow pathogenicity and high pathogenicity avian influenza (HPAI) viruses have been detected in birds\nin the United States. Since 2022, the HPAI A(H5) virus has been detected in commercial and\nbackyard flocks in 48 states, impacting over 100 million birds. To date, 67 people have tested\npositive for A(H5) virus in the United States since 2022, with all but one of these cases occurring in\n2024. All cases have been associated with exposure to either A(H5N1)-infected poultry or dairy\ncattle, except for two cases where the exposure source could not be identified. 14 To date, no human-\nto-human transmission of influenza A(H5) virus has been identified in the USA. A(H5N1) virus\ninfections in dairy cattle and wild and domestic birds continue to be reported in the USA. 15\nA(H5N1), Cambodia\nOn 10 January 2025, Cambodia notified WHO of one case of human infection with influenza A(H5N1)\nin a 28-year-old male from Kampong Cham Province. The case had onset of fever, sore throat and\nchest pain on 1 January 2025. He sought care at two private local clinics and after his condition did\nnot improve, he traveled to Phnom Penh and was hospitalized due to shortness of breath on 7\nJanuary at a national hospital, which is a severe acute respiratory infection (SARI) sentinel site. The\ncase was isolated upon admission and provided oseltamivir and symptomatic treatment before\npassing away on 10 January. Nasopharyngeal (NP) and oropharyngeal (OP) swab specimens tested\npositive on 9 January for influenza A(H5N1) by real-time reverse transcription-polymerase chain\nreaction (rt-PCR) at the National Institute of Public Health of Cambodia. The Institut Pasteur du\nCambodge (IPC) confirmed the results on 10 January. Sequence analysis of HA gene shows the virus\nbelongs to clade 2.3.2.1c and is closely related to those viruses circulating among birds in Cambodia\nin 2024. Phylogenetic and molecular analysis is ongoing.\nAccording to the early investigation, the case was a guard of a farm in the village where he lived and\nraised poultry for family consumption. There were reports of sick poultry in his farm and samples\nfrom the poultry on the farm have been collected. No further cases were detected among the\ncontacts of the case.\nAccording to reports received by WOAH, various influenza A(H5) subtypes continue to be detected in\nwild and domestic birds in the Americas, Asia and Europe. Infections in non-human mammals are\n11 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 2, ending January 11, 2025.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2025-week-02.html.\n12 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 50, ending December 14, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-50.html .\n13 US CDC. Weekly US Influenza Surveillance Report: Key Updates for Week 51, ending December 21, 2024.\nAvailable at: https://www.cdc.gov/fluview/surveillance/2024-week-51.html .\n14 United States Centers for Disease Control and Prevention. H5 Bird Flu: Current Situation. Available at:\nhttps://www.cdc.gov/bird-flu/situation-\nsummary/index.html?CDC_AA_refVal=https%3A%2F%2Fwww.cdc.gov%2Fbird-flu%2Fphp%2Favian-flu-\nsummary%2Findex.html .\n15 United States Department of Agriculture. Highly Pathogenic Avian Influenza (HPAI) Detections in Livestock,\n19 July 2024. Available at: https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-\ndetections/livestock .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 3, + "table_data": null, + "token_count": 984, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c4", + "chunk_index": 4, + "text": "4\nalso reported, including in marine and land mammals. 16 A list of bird and mammalian species\naffected by HPAI A(H5) viruses is maintained by FAO. 17\nRisk Assessment for avian influenza A(H5) viruses:\n1. What is the current global public health risk of additional human cases of infection with avian\ninfluenza A(H5) viruses?\nMost human cases so far have been infections in people exposed to A(H5) viruses, for example,\nthrough contact with infected poultry or contaminated environments, including live poultry markets,\nand occasionally infected mammals and contaminated environments. While the viruses continue to\nbe detected in animals and related environments humans are exposed to, further human cases\nassociated with such exposures are expected but unusual. The impact for public health if additional\ncases are detected is minimal. The current overall global public health risk of additional human cases\nis low.\n2. What is the likelihood of sustained human-to-human transmission of currently circulating avian\ninfluenza A(H5) viruses?\nNo sustained human-to-human transmission has been identified associated with the recent reported\nhuman infections with avian influenza A(H5). There has been no reported human-to-human\ntransmission of A(H5N1) viruses since 2007, although there may be gaps in investigations. In 2007\nand the years prior, small clusters of A(H5) virus infections in humans were reported, including some\ninvolving health care workers, where limited human-to-human transmission could not be excluded;\nhowever, sustained human-to-human transmission was not reported.\nAvailable evidence suggests that influenza A(H5) viruses circulating have not acquired the ability to\nefficiently transmit between people, therefore the likelihood of sustained human-to-human\ntransmission is thus currently considered unlikely at this time.\n3. What is the likelihood of international spread of avian influenza A(H5) viruses by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community-\nlevel spread is considered unlikely as current evidence suggests these viruses have not acquired the\nability to transmit easily among humans.\nA(H9N2), China\nSince the last risk assessment of 12 December 2024, two human cases of infection with A(H9N2)\ninfluenza viruses were notified to WHO from China (Table 1). Both cases were detected through\ninfluenza-like illness (ILI) surveillance, were mild and have recovered. Both cases had a history of\nexposure to live poultry markets prior the onset of symptoms. No further cases were detected\namong contacts of the cases. Influenza A(H9) virus was detected in the poultry-related environments\nassociated with these cases.\n16 World Organisation for Animal Health (WOAH). Avian influenza. Global situation. Available at:\nhttps://www.woah.org/en/disease/avian-influenza/#ui-id-2 .\n17 Food and Agriculture Organization of the United Nations. Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential/bird-species-affected-by-h5nx-hpai/en .", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 4, + "table_data": null, + "token_count": 687, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c5", + "chunk_index": 5, + "text": "Onset date\tReporting province\tAge (years)\tGender\tHospitalization date\n27 Nov 2024\tHubei\t8\tFemale\tNot hospitalized\n13 Dec 2024\tChongqing\t1\tFemale\t14 Dec 2024", + "chunk_type": "table", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ], + "token_count": 53, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c6", + "chunk_index": 6, + "text": "5", + "chunk_type": "prose", + "heading": "Influenza at the human-animal interface\nSummary and risk assessment, from 13 December 2024 to 20 January 2025 1", + "page_number": 5, + "table_data": null, + "token_count": 1, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c7", + "chunk_index": 7, + "text": "Onset date\nReporting province\nAge (years)\nGender\nHospitalization date\n27 Nov 2024\nHubei\n8\nFemale\nNot hospitalized\n13 Dec 2024\nChongqing\n1\nFemale\n14 Dec 2024\nRisk Assessment for avian influenza A(H9N2):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H9N2) viruses?\nMost human cases follow exposure to the A(H9N2) virus through contact with infected poultry or\ncontaminated environments. Most human infections of A(H9N2) to date have resulted in mild\nclinical illness in most cases. Nearly 130 human infections with A(H9N2) cases have been reported to\ndate since 2003, and six of these have been severe or fatal and three of these were known to have\nunderlying medical conditions. Since the virus is endemic in poultry in multiple continues in Africa\nand Asia 18 , further human cases associated with exposure to infected poultry are expected but\nremain unusual. The impact to public health if additional cases are detected is minimal. The overall\nglobal public health risk of additional human cases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H9N2)\nviruses?\nAt the present time, no sustained human-to-human transmission has been identified associated with\nthe event described above. Current evidence suggests that influenza A(H9N2) viruses from these\ncases have not acquired the ability of sustained transmission among humans, therefore sustained\nhuman-to-human transmission is thus currently considered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H9N2) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely as current evidence suggests the A(H9N2) virus subtype has not\nacquired the ability to transmit easily among humans.\nA(H10N3), China\nSince the last risk assessment of 12 December 2024, one human case of infection with A(H10N3)\ninfluenza viruses were notified to WHO from China on 3 January 2025. A 23-year-old female from\nGuangxi Zhuang Autonomous Region, with an underlying condition, had symptom onset on 12\nDecember 2024. She was admitted to hospital on 19 December with severe pneumonia and treated\nwith oseltamivir. Initially, she was in critical condition but has improved. A clinical sample collected\non 22 December tested positive for influenza A and influenza A(H10N3) was confirmed a on 26\nDecember. Prior to symptom onset, the patient worked at a supermarket and was exposed to freshly\nslaughtered poultry. No family members have developed symptoms at the time of reporting. All\nclose contacts tested negative for influenza A(H10N3). All environmental samples collected from\nvarious locations tested negative for influenza A(H10N3).\nThis is the fourth case of human A(H10N3) virus infection detected in China and globally to date.\n18 Food and Agriculture Organization of the United Nations (FAO). Global Avian Influenza Viruses with Zoonotic\nPotential situation update. Available at: https://www.fao.org/animal-health/situation-updates/global-aiv-with-\nzoonotic-potential .", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 5, + "table_data": null, + "token_count": 725, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c8", + "chunk_index": 8, + "text": "6\nRisk Assessment for avian influenza A(H10N3):\n1. What is the global public health risk of additional human cases of infection with avian influenza\nA(H10N3) viruses?\nHuman infections with avian influenza A(H10) viruses have been detected and reported previously.\nThe extent of circulation and epidemiology of these viruses in birds is unclear. Avian influenza\nA(H10N3) viruses with different genetic characteristics have been detected previously in migratory\nand other wild birds since the 1970s. As long as the virus continues to circulate in birds, further\nhuman cases can be expected but remain unusual. The impact to public health if additional sporadic\ncases are detected is minimal. The overall global public health risk of additional sporadic human\ncases is low.\n2. What is the likelihood of sustained human-to-human transmission of avian influenza A(H10N3)\nviruses?\nNo sustained human-to-human transmission has been identified associated with the event described\nAbove or past events with human cases of influenza A(H10N3) viruses. Current epidemiologic and\nvirologic evidence suggests that contemporary influenza A(H10N3) viruses assessed by the Global\nInfluenza Surveillance and response System (GISRS) have not acquired the ability of sustained\ntransmission among humans, therefore sustained human-to-human transmission is thus currently\nconsidered unlikely.\n3. What is the likelihood of international spread of avian influenza A(H10N3) virus by travellers?\nShould infected individuals from affected areas travel internationally, their infection may be\ndetected in another country during travel or after arrival. If this were to occur, further community\nlevel spread is considered unlikely based on current limited evidence.\nOverall risk management recommendations:\nSurveillance and investigations\n\u2022\nDue to the constantly evolving nature of influenza viruses, WHO continues to stress the\nimportance of global strategic surveillance in animals and humans to detect virologic,\nepidemiologic and clinical changes associated with circulating influenza viruses that may affect\nhuman (or animal) health. Continued vigilance is needed within affected and neighbouring areas\nto detect infections in animals and humans. Close collaboration with the animal health and\nenvironment sectors is essential to understand the extent of the risk of human exposure and to\nprevent and control the spread of animal influenza.\n\u2022\nAs the extent of influenza virus circulation in animals is not clear, epidemiologic and virologic\nsurveillance and the follow-up of suspected human cases should continue systematically.\nGuidance on investigation of non-seasonal influenza and other emerging acute respiratory\ndiseases has been published on the WHO website.\n\u2022\nCountries should increase avian influenza surveillance in domestic and wild birds, enhance\nsurveillance for early detection in cattle populations in countries where HPAI is known to be\ncirculating, include HPAI as a differential diagnosis in non-avian species, including cattle and\nother livestock populations, with high risk of exposure to HPAI viruses; monitor and investigate\ncases in non-avian species, including livestock, report cases of HPAI in all animal species,\nincluding unusual hosts, to WOAH and other international organizations, share genetic\nsequences of avian influenza viruses in publicly available databases, implement preventive and\nearly response measures to break the HPAI transmission cycle among animals through\nmovement restrictions of infected livestock holdings and strict biosecurity measures in all", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 6, + "table_data": null, + "token_count": 691, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c9", + "chunk_index": 9, + "text": "7\nholdings, employ good production and hygiene practices when handing animal products, and\nprotect persons in contact with suspected/infected animals. 19\n\u2022\nWhen there has been human exposure to a known outbreak of an influenza A virus in domestic\npoultry, wild birds or other animals \u2013 or when there has been an identified human case of\ninfection with such a virus \u2013 enhanced surveillance in potentially exposed human populations\nbecomes necessary. Enhanced surveillance should consider the health care seeking behaviour of\nthe population, and could include a range of active and passive health care and/or community-\nbased approaches, including: enhanced surveillance in local influenza-like illness (ILI)/SARI\nsystems, active screening in hospitals and of groups that may be at higher occupational risk of\nexposure, and inclusion of other sources such as traditional healers, private practitioners and\nprivate diagnostic laboratories.\n\u2022\nVigilance for the emergence of novel influenza viruses of pandemic potential should be\nmaintained at all times including during a non-influenza emergency. In the context of the co-\ncirculation of SARS-CoV-2 and influenza viruses, WHO has updated and published practical\nguidance for integrated surveillance .\nNotifying WHO\n\u2022\nAll human infections caused by a new subtype of influenza virus are notifiable under the\nInternational Health Regulations (IHR, 2005). 20 State Parties to the IHR (2005) are required to\nimmediately notify WHO of any laboratory-confirmed 5 21 case of a recent human infection caused\nby an influenza A virus with the potential to cause a pandemic 6 22 . Evidence of illness is not\nrequired for this report.\n\u2022\nWHO published the case definition for human infections with avian influenza A(H5) virus\nrequiring notification under IHR (2005): https://www.who.int/teams/global-influenza-\nprogramme/avian-influenza/case-definitions .\nVirus sharing and risk assessment\n\u2022\nIt is critical that these influenza viruses from animals or from people are fully characterized in\nappropriate animal or human health influenza reference laboratories. Under WHO\u2019s Pandemic\nInfluenza Preparedness (PIP) Framework, Member States are expected to share influenza viruses\nwith pandemic potential on a timely basis 23 with a WHO Collaborating Centre for influenza of\nGISRS. The viruses are used by the public health laboratories to assess the risk of pandemic\ninfluenza and to develop candidate vaccine viruses.\n\u2022\nThe Tool for Influenza Pandemic Risk Assessment (TIPRA) provides an in-depth assessment of\nrisk associated with some zoonotic influenza viruses \u2013 notably the likelihood of the virus gaining\nhuman-to-human transmissibility, and the impact should the virus gain such transmissibility.\nTIPRA maps relative risk amongst viruses assessed using multiple elements. The results of TIPRA\ncomplement those of the risk assessment provided here, and those of prior TIPRA analyses will\nbe published at http://www.who.int/teams/global-influenza-programme/avian-influenza/tool-\nfor-influenza-pandemic-risk-assessment-(tipra) .\n19 World Organisation for Animal Health. Statement on High Pathogenicity Avian Influenza in Cattle, 6\nDecember 2024. Available at: https://www.woah.org/en/high-pathogenicity-avian-influenza-hpai-in-cattle/ .\n20 World Health Organization. Case definitions for the four diseases requiring notification in all\ncircumstances under the International Health Regulations (2005).\n21 World Health Organization. Manual for the laboratory diagnosis and virological surveillance of influenza\n(2011). Available at: https://apps.who.int/iris/handle/10665/44518\n22 World Health Organization. Pandemic influenza preparedness framework for the sharing of influenza viruses\nand access to vaccines and other benefits, 2 nd edition. Available at: https://iris.who.int/handle/10665/341850\n23 World Health Organization. Operational guidance on sharing influenza viruses with human pandemic\npotential (IVPP) under the Pandemic Influenza Preparedness (PIP) Framework (2017). Available at:\nhttps://apps.who.int/iris/handle/10665/25940", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 7, + "table_data": null, + "token_count": 890, + "extractor": "pymupdf" + }, + { + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c10", + "chunk_index": 10, + "text": "8\nRisk reduction\n\u2022\nGiven the observed extent and frequency of avian influenza in poultry, wild birds and some wild\nand domestic mammals, the public should avoid contact with animals that are sick or dead from\nunknown causes, including wild animals, and should report dead birds and mammals or request\ntheir removal by contacting local wildlife or veterinary authorities.\n\u2022\nEggs, poultry meat and other poultry food products should be properly cooked and properly\nhandled during food preparation. Due to the potential health risks to consumers, raw milk\nshould be avoided. WHO advises consuming pasteurized milk. If pasteurized milk isn\u2019t available,\nheating raw milk until it boils makes it safer for consumption.\n\u2022\nWHO has published practical interim guidance to reduce the risk of infection in people exposed\nto avian influenza viruses.\nTrade and travellers\n\u2022\nWHO advises that travellers to countries with known outbreaks of animal influenza should avoid\nfarms, contact with animals in live animal markets, entering areas where animals may be\nslaughtered, or contact with any surfaces that appear to be contaminated with animal excreta.\nTravelers should also wash their hands often with soap and water. All individuals should follow\ngood food safety and hygiene practices.\n\u2022\nWHO does not advise special traveller screening at points of entry or restrictions with regards to\nthe current situation of influenza viruses at the human-animal interface. For recommendations\non safe trade in animals and related products from countries affected by these influenza viruses,\nrefer to WOAH guidance.\nLinks:\nWHO Human-Animal Interface web page\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza\nWHO Influenza (Avian and other zoonotic) fact sheet\nhttps://www.who.int/news-room/fact-sheets/detail/influenza-(avian-and-other-zoonotic)\nWHO Protocol to investigate non-seasonal influenza and other emerging acute respiratory diseases\nhttps://www.who.int/publications/i/item/WHO-WHE-IHM-GIP-2018.2\nWHO Public health resource pack for countries experiencing outbreaks of influenza in animals:\nhttps://www.who.int/publications/i/item/9789240076884\nCumulative Number of Confirmed Human Cases of Avian Influenza A(H5N1) Reported to WHO\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus\nAvian Influenza A(H7N9) Information\nhttps://www.who.int/teams/global-influenza-programme/avian-influenza/avian-influenza-a-( h7n9 )-\nvirus\nWorld Organisation of Animal Health (WOAH) web page: Avian Influenza\nhttps://www.woah.org/en/home/\nFood and Agriculture Organization of the United Nations (FAO) webpage: Avian Influenza\nhttps://www.fao.org/animal-health/avian-flu-qa/en/\nOFFLU\nhttp://www.offlu.org/", + "chunk_type": "prose", + "heading": "Table 1. Human cases of influenza A(H9N2) reported to WHO from China from to 13 December\n2024 to 20 January 2025.", + "page_number": 8, + "table_data": null, + "token_count": 637, + "extractor": "pymupdf" + } + ], + "extracted_tables": [ + [ + [ + "Onset date", + "Reporting province", + "Age (years)", + "Gender", + "Hospitalization date" + ], + [ + "27 Nov 2024", + "Hubei", + "8", + "Female", + "Not hospitalized" + ], + [ + "13 Dec 2024", + "Chongqing", + "1", + "Female", + "14 Dec 2024" + ] + ] + ], + "extracted_dates": [ + "13 December 2024", + "20 January 2025", + "12 December 2024", + "14 December 2024", + "21 December 2024", + "15 January 2025", + "10 January 2025", + "1 January 2025", + "19 July 2024", + "13 December\n2024", + "3 January 2025", + "12\nDecember 2024", + "6\nDecember 2024", + "January 11, 2025", + "December 14, 2024", + "December 21, 2024" + ], + "fetch_strategy": "custom:who_h5_hai", + "snapshot_timestamp": null, + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-13d8154856d34bd98734cd71c436af6a", + "result_id": "13d8154856d34bd98734cd71c436af6a", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "fetched_at": "2026-07-14T23:26:32.553609+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "title": "Bird flu: First death from H5N1 strain reported in US", + "published_date": "2025-01-07T16:25:05+00:00", + "language": "en", + "page_count": null, + "char_count": 2872, + "token_count": 606, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-13d8154856d34bd98734cd71c436af6a-c0", + "chunk_index": 0, + "text": "The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred.\nThe patient had been taken to hospital after contracting a major strain of bird flu, known as H5N1.\nLouisiana health department said they were over the age of 65, and had other underlying health conditions.\nIt said their public health investigation had not found evidence of person-to-person transmission, or any other cases.\nBird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. In very rare cases, it can also infect humans.\nThe state's health department added the person had contracted bird flu after being exposed to a personal flock of birds and wild birds.\n\"While the current public health risk for the general public remains low, people who work with birds, poultry or cows, or have recreational exposure to them, are at higher risk,\" it said.\nThere have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC).", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US", + "page_number": null, + "table_data": null, + "token_count": 228, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-13d8154856d34bd98734cd71c436af6a-c1", + "chunk_index": 1, + "text": "Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Bird migration has resulted in outbreaks of the avian flu in domestic and wild birds.\nThe H5N1 virus is the major strain circulating among wild birds worldwide, and emerged in China in the late 1990s.\nAlthough infection of humans is very rare, it occurs via transmission from birds.\nAlmost all cases of infection in people have been associated with close contact to infected dead or live birds, or contaminated environments.\nSince 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died.\nThere has been no sustained human-to-human transmission.\nLast month, the CDC said the Louisiana patient had been infected with the D1.1variant of the virus, which has recently been detected in North America.\nA 13-year-old girl in Canada was taken to hospital with the same D1.1 variant in November 2024, according to a paper published in The New England Journal of Medicine.\nIt is different to the B3.13 variant, which - during the past year - has been on the rise among cows in the US.\nIn September 2024, a person in Missouri recovered from bird flu after being treated in hospital.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > What is bird flu?", + "page_number": null, + "table_data": null, + "token_count": 263, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-13d8154856d34bd98734cd71c436af6a-c2", + "chunk_index": 2, + "text": "According to the WHO, symptoms of a H5N1 infection include a cough, sore throat, fever (often over 38C), muscle aches and general feelings of malaise.\nPeople with the virus may also display other non-respiratory symptoms such as conjunctivitis.\nThe WHO added that H5N1 has also been detected in people without symptoms who had contact with infected animals or their environments.\nWhile the risk to humans is low, the constantly evolving virus is monitored for all changes, including the potential to become easily transmissible from person to person.", + "chunk_type": "prose", + "heading": "First bird flu-related death reported in US > Bird flu symptoms", + "page_number": null, + "table_data": null, + "token_count": 115, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-02-08T22:05:39+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-93a756b83d2d442a831e67145fee02d2", + "result_id": "93a756b83d2d442a831e67145fee02d2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "domain": "time.com", + "fetched_at": "2026-07-14T23:28:18.270543+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates", + "published_date": "2024-12-19T08:00:00+00:00", + "language": "en", + "page_count": null, + "char_count": 5625, + "token_count": 1208, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c0", + "chunk_index": 0, + "text": "The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic.\nThe severe case involves a resident of southwestern Louisiana who was reported as presumptively positive for infection last Friday. The infected patient \u201cis experiencing severe respiratory illness related to H5N1 infection and is currently hospitalized in critical condition,\u201d according to Emma Herrock, a spokesperson for the Louisiana Department of Health, who said that the patient is over the age of 65 and has underlying medical conditions but that further updates on their condition will not be given at this time due to patient confidentiality.\nRead More: What Are the Symptoms of Bird Flu?\nIt is the 61st case of human H5N1 bird flu infection in the country since April this year. But the CDC said the overall risk of the pathogen to the public remains low, and no related deaths have been reported in the U.S. so far.\nHere\u2019s what to know.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 223, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c1", + "chunk_index": 1, + "text": "The CDC, in its Dec. 18 announcement, said that while an investigation is underway, the patient was found to have links to sick and dead birds in backyard flocks, making it the first known case of infection in the U.S. to have those origins.\nOf the 60 other cases, 58 were linked to commercial agriculture\u201437 from dairy herds and 21 from poultry farms and culling. The sources of exposure for the two other U.S. human cases remain unknown.", + "chunk_type": "prose", + "heading": "What caused the severe infection?", + "page_number": null, + "table_data": null, + "token_count": 100, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c2", + "chunk_index": 2, + "text": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California, with all but one exposed to cattle. In response, Governor Gavin Newsom on Dec. 18 declared a state of emergency.\nThe CDC said that such a \u201csevere\u201d infection as was found in Louisiana was expected given cases in other countries. In Vietnam, a patient who died in March after a diagnosis of \u201csevere pneumonia, severe sepsis, and acute respiratory distress syndrome\u201d was found with an H5N1 infection, according to the World Health Organization. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.\nRead More: The Bird Flu Virus Is One Mutation Away from Getting More Dangerous\nAccording to Mark Mulligan, Director of the Vaccine Center and the Division of Infectious Diseases and Immunology at New York University Grossman School of Medicine, the general population faces \u201cno immediate threat.\u201d Those who are in contact with birds and animals\u2014especially those who work on dairy farms and cattle farms\u2014are at greatest risk. Currently, no person to person spread of the virus has been detected.\n\u201cRight now we have to let the experts do surveillance, do sequencing of the virus to see if we're seeing any changes that portend any significant difference,\u201d says Mulligan.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What\u2019s the current state of H5N1 human infections?", + "page_number": null, + "table_data": null, + "token_count": 285, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c3", + "chunk_index": 3, + "text": "According to the CDC, symptoms of the bird flu can vary. Many of the cases in the U.S. included symptoms resembling conjunctivitis-like eye issues, including eye redness, discomfort, and discharge.\nSome cases also included both respiratory classic flu-like symptoms, including cough, headache, runny nose, fever, sore throat, body aches, fatigue, shortness of breath, and pneumonia, according to the CDC.\nRead More: What Are the Symptoms of Bird Flu?", + "chunk_type": "prose", + "heading": "What caused the severe infection? > What are the symptoms?", + "page_number": null, + "table_data": null, + "token_count": 98, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c4", + "chunk_index": 4, + "text": "The CDC issued a number of protective measures, including largely avoiding direct contact with wild birds and other suspected infected animals as well as their bodily excretions. People who work with cattle and poultry on affected farms have a greater risk of infection, and are thus advised to monitor any possible symptoms of infection.\nThe CDC also recommends that those who work with poultry or other animals use the correct personal protective equipment (PPE)\u2014including coveralls, boots, and more\u2014which should be provided by employers.\nVirologist and professor at John Hopkins University Andy Pekosz says that the severe case in Louisiana provides a reminder of an easy way to stay safe: stay away from dead animals. \u201cYou see a dead animal, if you're exposed to dead animals, stay away,\u201d he says. \u201cIn many ways, it is the least likely way someone can get exposed, but in some ways, it's also one of the more preventable ways.\u201d\nProperly cooked poultry and poultry products are safe, and the CDC says that while unpasteurized (raw) milk from infected cows can pose risks to humans, it\u2019s not yet known if avian influenza viruses can be transmitted through its consumption.\nBoth Mulligan and Pekosz say it is also important to get the seasonal human influenza vaccine. They say if there were to be a case of a person with simultaneous bird flu and human flu infection, it could lead to a \u201creassortment\u201d and thus a virus that could be more easily spread.\n\u201cWe know that has happened before, because the 1957 influenza pandemic and the 1968 influenza pandemic both were a result of a human and a bird influenza virus exchanging genetic material,\u201d Pekosz says. \u201cWe know that the flu vaccines are not perfect, but they do a good job of reducing infection.\u201d\nThe CDC currently has a program to offer seasonal vaccines to farm workers in high risk scenarios in certain states.", + "chunk_type": "prose", + "heading": "What caused the severe infection? > How can infection be prevented?", + "page_number": null, + "table_data": null, + "token_count": 390, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c5", + "chunk_index": 5, + "text": "\u2022 L.A. Fires Show Reality of 1.5\u00b0C of Warming\n\u2022 Behind the Scenes of The White Lotus Season Three\n\u2022 How Trump 2.0 Is Already Sowing Confusion\n\u2022 Bad Bunny On Heartbreak and New Album\n\u2022 How to Get Better at Doing Things Alone\n\u2022 We\u2019re Lucky to Have Been Alive in the Age of David Lynch\n\u2022 The Motivational Trick That Makes You Exercise Harder\n\u2022 Column: All Those Presidential Pardons Give Mercy a Bad Name\nContact us at letters@time.com", + "chunk_type": "prose", + "heading": "What caused the severe infection? > More Must-Reads from TIME", + "page_number": null, + "table_data": null, + "token_count": 112, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-26T11:51:37+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "doc-0cbd712ea75946f0bf6f443638ecf211", + "result_id": "0cbd712ea75946f0bf6f443638ecf211", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "fetched_at": "2026-07-14T23:28:33.319486+00:00", + "document_type": "html", + "status": "success", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN", + "published_date": "2024-12-18T00:00:00", + "language": "en", + "page_count": null, + "char_count": 4156, + "token_count": 821, + "error_message": null, + "http_status": 200, + "content_type": "text/html", + "chunks": [ + { + "chunk_id": "doc-0cbd712ea75946f0bf6f443638ecf211-c0", + "chunk_index": 0, + "text": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States.\nThe agency said Wednesday that the person was exposed to sick and dead birds in backyard flocks; this is the first US bird flu case linked to a backyard flock.\n\u201cIt is believed that the patient that was reported by Louisiana had exposure to sick or dead birds on their property. These are not commercial poultry, and there was no exposure to dairy cows or their related products,\u201d said Dr. Demetre Daskalakis, director of the National Center for Immunization and Respiratory Diseases at the CDC.\nFederal officials declined to answer questions about the patient\u2019s symptoms or their current condition. They instead referred all inquiries about the case to the Louisiana Department of Health, which is leading the investigation.\nAccording to state officials, the patient is experiencing severe respiratory illness related to H5N1 and is hospitalized in critical condition. The person is older than 65 and has underlying medical conditions that increased their risk of flu complications, the Louisiana Department of Health said in an email to CNN.\nThis virus, D1.1, is the same type found in recent human cases in Canada and Washington state and detected in wild birds and poultry in the United States. It\u2019s different from B3.13, the type detected in dairy cows, some poultry outbreaks and other cases in humans across the United States.\nThe CDC said it\u2019s working on additional genomic sequencing of samples from the patient, who is from southwestern Louisiana, and the investigation into the patient\u2019s exposure is still underway.\nBird flu has been linked with severe human illness and death in other countries, but no person-to-person spread has been detected.\n\u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement.\nIn California, Gov. Gavin Newsom declared a state of emergency Wednesday over the continued spread of H5N1 bird flu in that state.", + "chunk_type": "prose", + "heading": null, + "page_number": null, + "table_data": null, + "token_count": 420, + "extractor": "trafilatura" + }, + { + "chunk_id": "doc-0cbd712ea75946f0bf6f443638ecf211-c1", + "chunk_index": 1, + "text": "\u2022 Sign up here to get The Results Are In with Dr. Sanjay Gupta every Friday from the CNN Health team.\nNewsom said the measure was necessary because, despite intense efforts to contain it, the virus had spread beyond the Central Valley to four dairies in the southern part of the state.\n\u201cThis proclamation is a targeted action to ensure government agencies have the resources and flexibility they need to respond quickly to this outbreak,\u201d he said in a news release. \u201cWhile the risk to the public remains low, we will continue to take all necessary steps to prevent the spread of this virus.\u201d\nThe emergency declaration will give state agencies greater flexibility with staffing and free up more funding for the response.\nOf the 61 confirmed human cases of bird flu in the US this year, 34 have been in California. Nearly all of those have been in dairy farm workers, according to the CDC.\nThe Louisiana case shows that precautions should be taken by people with backyard chicken flocks, hunters and other bird enthusiasts, the CDC said.\n\u201cThe cases across the US are a constellation of spillovers,\u201d said Dr. Rebecca Christofferson, a virologist at Louisiana State University\u2019s School of Veterinary Medicine. Experts still don\u2019t understand exactly how these spillovers are happening and the specific factors that increase a person\u2019s risk.\n\u201cIt\u2019s just kind of a black box at the moment that a lot of people are trying to answer these questions on,\u201d Christofferson said.\nThe CDC says the best approach is to avoid exposure. Infected birds can shed viruses in their saliva, mucus and feces, and other animals may shed them in their respiratory secretions and bodily fluids, including unpasteurized milk from cows.\n\u201cPeople who work with or have recreational exposure to infected animals are at higher risk of infection, and it\u2019s extremely important that they follow CDC recommended precautions when around infected or potentially infected animals, a message that we will continue to magnify given recent cases,\u201d Daskalakis said.", + "chunk_type": "prose", + "heading": "Get CNN Health's weekly newsletter", + "page_number": null, + "table_data": null, + "token_count": 401, + "extractor": "trafilatura" + } + ], + "extracted_tables": [], + "extracted_dates": [], + "fetch_strategy": "wayback", + "snapshot_timestamp": "2025-01-09T23:57:07+00:00", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/filtered.json b/data/runs_ab_with_history/q1/traj_20250224/filtered.json new file mode 100644 index 0000000..263d344 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/filtered.json @@ -0,0 +1,208 @@ +[ + { + "result_id": "ed3a4036b0e149d29cd9191db352a1a4", + "question_id": "q1", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "relevance_score": 0.30434782608695654, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 1, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1_cumulative", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "4bb25f1d7e9447f6b32ce883ced5338f", + "question_id": "q1", + "url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "published_date": "2025-02-22T17:50:12+00:00", + "file_type": null, + "relevance_score": 0.13043478260869565, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 2, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "usda_aphis_livestock", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "e87e055a74ff4d60ace711686392c638", + "question_id": "q1", + "url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "published_date": "2025-02-22T22:00:04+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 3, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "cdc_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "ece1ab107c424606bd711bf9e11b7c6d", + "question_id": "q1", + "url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "published_date": "2025-02-21T23:54:53+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 4, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5n1", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "fa00521cbc984310baa032578a0b3525", + "question_id": "q1", + "url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "published_date": "2025-02-21T23:56:38+00:00", + "file_type": null, + "relevance_score": 0.043478260869565216, + "credibility_score": 1.0, + "final_score": 1.0, + "source_tier": "official", + "is_official_domain": true, + "selection_reasons": [ + "dashboard_lookup_bypass" + ], + "extraction_priority": 5, + "extraction_mode": "html", + "expected_value": "high", + "source_id": "who_h5_hai", + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "13d8154856d34bd98734cd71c436af6a", + "question_id": "q1", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "relevance_score": 0.9, + "credibility_score": 0.8, + "final_score": 0.85, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific_event", + "official_data" + ], + "extraction_priority": 6, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "93a756b83d2d442a831e67145fee02d2", + "question_id": "q1", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific_event", + "official_data" + ], + "extraction_priority": 7, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + }, + { + "result_id": "0cbd712ea75946f0bf6f443638ecf211", + "question_id": "q1", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "relevance_score": 0.85, + "credibility_score": 0.8, + "final_score": 0.825, + "source_tier": "trusted_media", + "is_official_domain": false, + "selection_reasons": [ + "recent", + "specific_event", + "official_data" + ], + "extraction_priority": 8, + "extraction_mode": "html", + "expected_value": "low", + "source_id": null, + "region": "us", + "question_text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?" + } +] \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/forecast.json b/data/runs_ab_with_history/q1/traj_20250224/forecast.json new file mode 100644 index 0000000..5be3000 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/forecast.json @@ -0,0 +1,151 @@ +{ + "question_id": "q1", + "options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "distributions": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "probabilities": { + "70-100": 0.9999101134472381, + "100-150": 8.988655271344008e-05, + "150-200": 4.8413676833303883e-14, + "200+": 1.0430410484166256e-18 + } + } + ], + "records": [ + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "70-100", + "probability": 0.9999101134472381, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "100-150", + "probability": 8.988655271344008e-05, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "150-200", + "probability": 4.8413676833303883e-14, + "forecast_version": null + }, + { + "question_id": "q1", + "forecast_source": "bioscancast", + "option": "200+", + "probability": 1.0430410484166256e-18, + "forecast_version": null + } + ], + "samples": [ + { + "probabilities": [ + 0.99, + 0.01, + 0.0, + 0.0 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.95, + "drivers_up": [ + "Recent uptick in cases, with 67 confirmed cases since 2022.", + "Over half of the cases in 2024 occurred in California, indicating potential regional clusters." + ], + "drivers_down": [ + "Historically low human-to-human transmission rate for H5N1.", + "As of late January 2025, the cumulative number of cases is still relatively low (67 cases)." + ], + "why_might_be_wrong": "There could be unreported cases or a sudden increase in transmission due to changes in the virus or reporting mechanisms that are not captured in the current data.", + "rationale": "The cumulative number of confirmed H5N1 cases in the US is 67, with recent data indicating a slow increase. Historically, H5N1 has limited human-to-human transmission, which supports a lower base rate of large outbreaks. Given the current number of cases and the remaining short timeframe until the target date, the probability of reaching even the lower range of 70-100 is high. However, the probability of surpassing 100 cases is low due to the nature of the virus and current trends.", + "model": "gpt-4o-2024-08-06", + "seed": 42 + }, + { + "probabilities": [ + 0.95, + 0.04, + 0.01, + 0.0 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.9, + "drivers_up": [ + "Recent uptick in cases, with 34 cases reported in 2025 alone", + "Majority of cases concentrated in California, indicating potential regional outbreak" + ], + "drivers_down": [ + "H5N1 historically has limited human-to-human transmission", + "The cumulative confirmed cases as of February 20, 2025, is 67, indicating a slow spread", + "No evidence of significant changes in transmissibility or new variants" + ], + "why_might_be_wrong": "Unexpected changes in the virus's transmissibility or a new variant could lead to a rapid increase in cases.", + "rationale": "The cumulative confirmed cases of H5N1 in the US were reported as 67 as of February 20, 2025. Despite a recent increase in cases, with 34 reported in 2025 alone, the nature of H5N1's transmission remains limited primarily to animal-to-human. Historical data shows a low base rate for significant outbreaks in the US. Given the current evidence, the probability that cases will reach 70-100 by February 28, 2025 is high. The lack of significant transmission changes or new variants further supports the likelihood of remaining within the 70-100 range.", + "model": "gpt-4o-2024-08-06", + "seed": 43 + }, + { + "probabilities": [ + 0.998, + 0.002, + 0.0, + 0.0 + ], + "ok": true, + "reference_class": "H5N1 outbreaks in the US", + "base_rate": 0.933, + "drivers_up": [ + "Recent small uptick in cases suggesting potential for more human contact or spread", + "High concentration of cases in specific states like California, indicating localized outbreaks" + ], + "drivers_down": [ + "H5N1 historically has limited human-to-human transmission", + "The cumulative number of cases is still significantly below 70", + "The US has robust public health surveillance and response systems in place" + ], + "why_might_be_wrong": "There could be an unanticipated surge in cases due to a mutation or increased exposure risk that isn't currently evident.", + "rationale": "The current cumulative number of confirmed H5N1 cases in the US is 67, with a recent slight increase. Historically, H5N1 has not been highly transmissible between humans, and public health measures in the US are strong. Given the low base rate of major outbreaks and the current case count, it is highly likely that the final count by February 28, 2025, will remain below 100. Therefore, the probability is skewed heavily towards the 70-100 range.", + "model": "gpt-4o-2024-08-06", + "seed": 44 + } + ], + "baseline_rationale": null, + "evidence_record_ids": [ + "ins-51c441692238", + "ins-17cfd749eeda", + "ins-086c99d04f2b", + "ins-8ed76331e648", + "ins-4d96fc33c0e4", + "ins-d9abfad30860", + "ins-953aae88ce1f", + "ins-00dc240f365a", + "ins-4562471a8dde", + "ins-3cade2f9329e", + "ins-8b9e0d49c3d0" + ], + "budget_summary": { + "total_input_tokens": 8097, + "total_output_tokens": 779, + "total_tokens": 8876, + "per_model": { + "gpt-4o-2024-08-06": { + "input_tokens": 8097, + "output_tokens": 779, + "calls": 3 + } + } + }, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/insight.json b/data/runs_ab_with_history/q1/traj_20250224/insight.json new file mode 100644 index 0000000..5771a4f --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/insight.json @@ -0,0 +1,349 @@ +{ + "records": [ + { + "id": "ins-8b9e0d49c3d0", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 67.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": null, + "event_date_precision": null, + "summary": "Total confirmed cases of A(H5) virus in the US since 2022, with all but one in 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:43.007047+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-fa00521cbc984310baa032578a0b3525", + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c3", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "To date, 67 people have tested positive for A(H5) virus in the United States since 2022" + } + ] + }, + { + "id": "ins-00dc240f365a", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 66.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed H5N1 cases in the US since 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:47.041658+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-13d8154856d34bd98734cd71c436af6a", + "chunk_id": "doc-13d8154856d34bd98734cd71c436af6a-c0", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "There have been 66 confirmed cases of H5N1 bird flu in the US since 2024" + } + ] + }, + { + "id": "ins-4d96fc33c0e4", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 34.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human infections in the U.S. for the year, with a majority in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:49.194998+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-93a756b83d2d442a831e67145fee02d2", + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c2", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "Of the human infections recorded in the U.S. this year, 34, or more than half, were in California" + } + ] + }, + { + "id": "ins-4562471a8dde", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "US", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-01-01T00:00:00", + "event_date_precision": "year", + "summary": "Cumulative total of confirmed human cases of bird flu in the US this year, with 34 in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:50.955332+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-0cbd712ea75946f0bf6f443638ecf211", + "chunk_id": "doc-0cbd712ea75946f0bf6f443638ecf211-c1", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "Of the 61 confirmed human cases of bird flu in the US this year, 34 have been in California." + } + ] + }, + { + "id": "ins-953aae88ce1f", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-14T00:00:00", + "event_date_precision": "day", + "summary": "One laboratory-confirmed human case of H5N1 reported in Louisiana.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:45.100638+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-fa00521cbc984310baa032578a0b3525", + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one laboratory-confirmed human case of infection with influenza A(H5) in an adult aged over 65 years from the state of Louisiana." + } + ] + }, + { + "id": "ins-086c99d04f2b", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 2.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-21T00:00:00", + "event_date_precision": "day", + "summary": "Two additional laboratory-confirmed human cases of H5N1 reported from Iowa and Wisconsin.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:45.100925+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-fa00521cbc984310baa032578a0b3525", + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of two additional laboratory-confirmed human case of infection with influenza A(H5) in an adult from the states of Iowa and Wisconsin." + } + ] + }, + { + "id": "ins-17cfd749eeda", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "USA", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-15T00:00:00", + "event_date_precision": "day", + "summary": "One additional laboratory-confirmed human case of H5N1 reported in California.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:45.101186+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-fa00521cbc984310baa032578a0b3525", + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c2", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "the USA notified WHO of one additional laboratory-confirmed human case of infection with influenza A(H5) from the state of California." + } + ] + }, + { + "id": "ins-51c441692238", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States of America", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 9.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2025-01-20T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human cases of influenza A(H5) virus in the US since the last risk assessment.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:43.246832+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-fa00521cbc984310baa032578a0b3525", + "chunk_id": "doc-fa00521cbc984310baa032578a0b3525-c1", + "source_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "quote": "influenza A(H5) virus has been detected in nine humans in the United States of America (USA)" + } + ] + }, + { + "id": "ins-3cade2f9329e", + "question_id": "q1", + "event_type": "other", + "confidence": 0.5, + "location": "Global", + "iso_country_code": null, + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 954.0, + "metric_unit": null, + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2003-01-01T00:00:00", + "event_date_precision": "day", + "summary": "Since 2003, the WHO has counted 954 confirmed human cases of bird flu, of which about half have died.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:47.074560+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-13d8154856d34bd98734cd71c436af6a", + "chunk_id": "doc-13d8154856d34bd98734cd71c436af6a-c1", + "source_url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "quote": "Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died." + } + ] + }, + { + "id": "ins-8ed76331e648", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "United States", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 61.0, + "metric_unit": "cases", + "count_basis": "cumulative", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-19T00:00:00", + "event_date_precision": "day", + "summary": "Cumulative total of confirmed human H5N1 cases since April 2024.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:49.193485+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-93a756b83d2d442a831e67145fee02d2", + "chunk_id": "doc-93a756b83d2d442a831e67145fee02d2-c0", + "source_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "quote": "It is the 61st case of human H5N1 bird flu infection in the country since April this year." + } + ] + }, + { + "id": "ins-d9abfad30860", + "question_id": "q1", + "event_type": "case_count", + "confidence": 0.85, + "location": "Louisiana", + "iso_country_code": "US", + "pathogen": "h5n1", + "metric_name": "confirmed_cases", + "metric_value": 1.0, + "metric_unit": "cases", + "count_basis": "active", + "time_window": "unknown", + "surveillance_method": null, + "data_quality": null, + "event_date": "2024-12-18T00:00:00", + "event_date_precision": "day", + "summary": "First severe case of H5N1 bird flu in the US, linked to backyard flock, patient hospitalized in critical condition.", + "model": "gpt-4o-mini", + "extracted_at": "2026-07-14T23:28:51.112499+00:00", + "notes": null, + "sources": [ + { + "document_id": "doc-0cbd712ea75946f0bf6f443638ecf211", + "chunk_id": "doc-0cbd712ea75946f0bf6f443638ecf211-c0", + "source_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "quote": "A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States." + } + ] + } + ], + "budget_summary": { + "total_input_tokens": 77375, + "total_output_tokens": 1511, + "total_tokens": 78886, + "per_model": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 77375, + "output_tokens": 1511, + "calls": 35 + } + } + }, + "documents_processed": 8, + "documents_skipped": 0, + "notes": [] +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/manifest.json b/data/runs_ab_with_history/q1/traj_20250224/manifest.json new file mode 100644 index 0000000..c6443d1 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/manifest.json @@ -0,0 +1,202 @@ +{ + "run_id": "traj_20250224", + "question_id": "q1", + "csv_path": "bioscancast/stages/evaluation/bioscancast_questions.csv", + "started_at": "2026-07-14T23:20:33.051316+00:00", + "completed_at": "2026-07-14T23:28:58.898220+00:00", + "stage_timings": { + "search": 250.565, + "filter": 3.299, + "extract": 228.232, + "insight": 15.966, + "forecast": 7.777 + }, + "current_stage": null, + "errored_stage": null, + "error_message": null, + "config": { + "filter": { + "blocked_domains": [ + "facebook.com", + "instagram.com", + "pinterest.com", + "tiktok.com" + ], + "low_value_url_keywords": [ + "/about", + "/account", + "/advertise", + "/careers", + "/contact", + "/login", + "/privacy", + "/register", + "/signup", + "/terms" + ], + "low_value_title_keywords": [ + "cookie policy", + "login", + "privacy policy", + "register", + "sign in", + "terms of use" + ], + "source_tier_scores": { + "official": 1.0, + "academic": 0.9, + "trusted_media": 0.65, + "ngo": 0.6, + "unknown": 0.35 + }, + "heuristic_weights": { + "keyword_overlap": 0.5, + "freshness": 0.2, + "domain": 0.1, + "official_bonus": 0.2 + }, + "heuristic_keep_threshold": 0.65, + "heuristic_borderline_threshold": 0.45, + "reranker_weights": { + "heuristic_priority": 0.6, + "reranker_score": 0.4 + }, + "auto_keep_after_rerank": 0.82, + "auto_reject_after_rerank": 0.3, + "max_llm_filter_candidates": 10, + "no_llm_soft_fallback": false, + "no_llm_fallback_relevance_threshold": 0.5, + "max_docs_per_domain": 2, + "max_docs_per_type": 5, + "near_duplicate_similarity_threshold": 0.92 + }, + "extraction": { + "fetch_timeout_seconds": 30.0, + "fetch_max_bytes": 25000000, + "pdf_max_pages": 100, + "chunk_target_tokens": 800, + "chunk_max_tokens": 1500, + "thin_extraction_min_chars": 500, + "user_agent": "BioScanCast/0.1 (+https://github.com/algorithmicgovernance/BioScanCast)", + "enable_docling_refiner": true, + "docling_source_allowlist": [ + "cdc.gov/mmwr/", + "cdn.who.int/media/docs/default-source/_sage-", + "cdn.who.int/media/docs/default-source/documents/emergencies/situation-reports/" + ], + "docling_sparse_cell_threshold": 0.5, + "impersonate": "chrome" + }, + "insight": { + "retrieval_top_k": 12, + "bm25_weight": 0.5, + "embedding_weight": 0.5, + "cheap_model": "gpt-4o-mini", + "embedding_model": "text-embedding-3-small", + "max_input_tokens_per_run": 500000, + "max_chunks_per_document": 12, + "extraction_max_output_tokens": 4096, + "chunk_workers": 6, + "low_survival_doc_threshold": 5, + "low_survival_top_k": 20 + }, + "forecast": { + "model": "gpt-4o", + "ensemble_samples": 3, + "temperature": 0.7, + "seed": 42, + "aggregation": "geometric_mean_of_odds", + "extremize": 1.0, + "extremize_gate": 0.5, + "reasoning_max_tokens": 4096, + "max_evidence_records": 40, + "max_input_tokens_per_run": 1000000, + "forecast_source": "bioscancast", + "emit_baseline": false, + "baseline_source": "bioscancast_baseline", + "baseline_model": "gpt-4o-mini" + }, + "no_history_context": false + }, + "forecast_options": [ + "70-100", + "100-150", + "150-200", + "200+" + ], + "forecast_options_source": "forecasts_csv:bioscancast/stages/evaluation/bioscancast_forecasts.csv", + "thin_extractions": [ + { + "doc_id": "doc-4bb25f1d7e9447f6b32ce883ced5338f", + "result_id": "4bb25f1d7e9447f6b32ce883ced5338f", + "domain": "aphis.usda.gov", + "source_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "document_type": "html", + "char_count": 492, + "min_chars": 500, + "reason": "thin_extraction" + } + ], + "docling_refiner": [ + { + "source_url": "https://cdn.who.int/media/docs/default-source/influenza/human-animal-interface-risk-assessments/influenza-at-the-human-animal-interface-summary-and-assessment--from-13-december-2024-to-20-january-2025.pdf?sfvrsn=aff4e6b9_3&download=true", + "fired": false, + "trigger": null, + "status": "skipped_no_trigger", + "page_count": 8, + "n_suspect_tables": 0, + "suspect_pages": [], + "convert_s": null, + "total_s": 0.0 + } + ], + "combined_usage": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 79424, + "output_tokens": 1889, + "calls": 38 + }, + "gpt-4o-2024-08-06": { + "input_tokens": 8097, + "output_tokens": 779, + "calls": 3 + } + }, + "stage_usage": { + "search": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 390, + "output_tokens": 100, + "calls": 2 + } + }, + "filter": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 1659, + "output_tokens": 278, + "calls": 1 + } + }, + "insight": { + "gpt-4o-mini-2024-07-18": { + "input_tokens": 77375, + "output_tokens": 1511, + "calls": 35 + } + }, + "forecast": { + "gpt-4o-2024-08-06": { + "input_tokens": 8097, + "output_tokens": 779, + "calls": 3 + } + } + }, + "stage_costs_usd": { + "search": 0.000118, + "filter": 0.000416, + "insight": 0.012513, + "forecast": 0.028032 + }, + "estimated_cost_usd": 0.041079 +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/question.json b/data/runs_ab_with_history/q1/traj_20250224/question.json new file mode 100644 index 0000000..82b7bda --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/question.json @@ -0,0 +1,11 @@ +{ + "id": "q1", + "text": "How many confirmed human cases of H5N1 will be reported in the US by February 28, 2025, according to the US dashboard?", + "created_at": "2025-02-17T00:00:00+00:00", + "target_date": "2025-02-28T00:00:00+00:00", + "region": "us", + "pathogen": "h5n1", + "event_type": "case_count", + "resolution_criteria": "The number of cases reported by the US dashboard as of February 28, 2025.", + "as_of_date": "2025-02-24T00:00:00+00:00" +} \ No newline at end of file diff --git a/data/runs_ab_with_history/q1/traj_20250224/search.json b/data/runs_ab_with_history/q1/traj_20250224/search.json new file mode 100644 index 0000000..55a3707 --- /dev/null +++ b/data/runs_ab_with_history/q1/traj_20250224/search.json @@ -0,0 +1,982 @@ +[ + { + "id": "ed3a4036b0e149d29cd9191db352a1a4", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "canonical_url": "https://web.archive.org/web/20250209191218id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/avian-a-h5n1-virus", + "domain": "who.int", + "title": "WHO Cumulative confirmed human cases of avian influenza A(H5N1) reported to WHO", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:20:34.936131+00:00", + "published_date": "2025-02-09T19:12:18+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1_cumulative", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9616438356164384, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6831209053007743, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "4bb25f1d7e9447f6b32ce883ced5338f", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "canonical_url": "https://web.archive.org/web/20250222175012id_/https://www.aphis.usda.gov/livestock-poultry-disease/avian/avian-influenza/hpai-detections/hpai-confirmed-cases-livestock", + "domain": "aphis.usda.gov", + "title": "USDA APHIS HPAI Confirmed Cases in Livestock", + "snippet": "United States", + "rank": 0, + "retrieved_at": "2026-07-14T23:20:34.936131+00:00", + "published_date": "2025-02-22T17:50:12+00:00", + "file_type": null, + "language": null, + "source_id": "usda_aphis_livestock", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.6084216795711733, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "51fd97bf7bc3461abf8104106718bbf5", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.forbes.com/sites/brucelee/2025/01/30/first-reported-h5n9-bird-flu-outbreak-in-us-as-h5n1-keeps-spreading/", + "canonical_url": "https://forbes.com/sites/brucelee/2025/01/30/first-reported-h5n9-bird-flu-outbreak-in-us-as-h5n1-keeps-spreading", + "domain": "forbes.com", + "title": "First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading - Forbes", + "snippet": "First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading First Reported H5N9 Bird Flu Outbreak In US As H5N1 Keeps Spreading The U.S. hasn\u2019t been able to control the spread of the H5N1 bird flu. And now for the first time ever, there\u2019s been a reported outbreak in the U.S. of another strain of avian influenza, H5N9. Well, the H5N1 strain has been spreading among birds for the past several years and recently appeared in other animals like cattle, cats, pigs and, yes, humans, as I\u2019ve described for Forbes. The more birds get infected with the H5N1 or N5N9 viruses, the more likely it is for different mutations and reassortments to occur.", + "rank": 1, + "retrieved_at": "2026-07-14T23:24:41.929524+00:00", + "published_date": "2025-01-30T14:20:06+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9342465753424658, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5799463966646814, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "e87e055a74ff4d60ace711686392c638", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary/", + "canonical_url": "https://web.archive.org/web/20250222220004id_/https://www.cdc.gov/bird-flu/situation-summary", + "domain": "cdc.gov", + "title": "CDC H5N1 Situation Summary", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:20:34.936131+00:00", + "published_date": "2025-02-22T22:00:04+00:00", + "file_type": null, + "language": null, + "source_id": "cdc_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9972602739726028, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5692912447885646, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "ece1ab107c424606bd711bf9e11b7c6d", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "canonical_url": "https://web.archive.org/web/20250221235453id_/https://www.who.int/teams/global-influenza-programme/avian-influenza", + "domain": "who.int", + "title": "WHO H5N1 Situation Updates", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:20:34.936131+00:00", + "published_date": "2025-02-21T23:54:53+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5n1", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9945205479452055, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5690172721858249, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "fa00521cbc984310baa032578a0b3525", + "question_id": "q1", + "query_id": "dashboard_q1", + "engine": "dashboard", + "url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "canonical_url": "https://web.archive.org/web/20250221235638id_/https://www.who.int/teams/global-influenza-programme/avian-influenza/monthly-risk-assessment-summary", + "domain": "who.int", + "title": "WHO Influenza at the human-animal interface (monthly risk assessment)", + "snippet": "Global", + "rank": 0, + "retrieved_at": "2026-07-14T23:20:34.936131+00:00", + "published_date": "2025-02-21T23:56:38+00:00", + "file_type": null, + "language": null, + "source_id": "who_h5_hai", + "is_official_domain": true, + "source_tier": "official", + "domain_score": 1.0, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9945205479452055, + "duplicate_cluster_id": null, + "retrieval_reason": "dashboard_lookup", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5690172721858249, + "published_date_source": "wayback_snapshot", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "13d8154856d34bd98734cd71c436af6a", + "question_id": "q1", + "query_id": "49ee28a8d50745e4aee65d8cee8cfea9", + "engine": "tavily", + "url": "https://www.bbc.com/news/articles/cqx85y07jz9o", + "canonical_url": "https://bbc.com/news/articles/cqx85y07jz9o", + "domain": "bbc.com", + "title": "Bird flu: First death from H5N1 strain reported in US - BBC.com", + "snippet": "Bird flu: First death from H5N1 strain reported in US First bird flu-related death reported in US The first bird-flu related death has been reported in the US, according to the Louisiana department of health, where the death occurred. Bird flu is a disease caused by a virus that infects birds and sometimes other animals, such as foxes, seals and otters. There have been 66 confirmed cases of H5N1 bird flu in the US since 2024, according to the Centers for Disease Control and Prevention (CDC). What is bird flu? Bird flu is a disease caused by a virus that infects birds, and sometimes other animals. Since 2003, the World Health Organization (WHO) has counted 954 confirmed human cases of bird flu, of which about half have died. About the BBC", + "rank": 4, + "retrieved_at": "2026-07-14T23:24:42.760201+00:00", + "published_date": "2025-01-07T16:25:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8712328767123287, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5589711137581893, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "93a756b83d2d442a831e67145fee02d2", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer/", + "canonical_url": "https://time.com/7203290/bird-flu-united-states-severe-case-h5n1-explainer", + "domain": "time.com", + "title": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates - TIME", + "snippet": "\u2018Severe\u2019 Bird Flu in the U.S.: Latest Updates | TIME TIME 2030 What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case What to Know About Bird Flu in the U.S. After CDC Announces First \u2018Severe\u2019 Human Case The Centers for Disease Control and Prevention (CDC) confirmed on Wednesday the United States\u2019 first \u201csevere\u201d human case of H5N1 avian influenza\u2014or bird flu, a zoonotic infection which has stoked fears of becoming the next global pandemic. It is the 61st case of human H5N1 bird flu infection in the country since April this year. The U.S. appears to be leading in H5N1 infections across the world this year, according to CDC data on bird flu cases reported to the WHO.", + "rank": 2, + "retrieved_at": "2026-07-14T23:24:39.992273+00:00", + "published_date": "2024-12-19T08:00:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.552135199523526, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "6094cd73cae54e749f29e3a14fff6afc", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://pharmaphorum.com/news/us-reports-its-first-fatal-case-h5n1-bird-flu", + "domain": "pharmaphorum.com", + "title": "US reports its first fatal case of H5N1 bird flu - pharmaphorum", + "snippet": "US reports its first fatal case of H5N1 bird flu | pharmaphorum The unidentified man is one of 66 confirmed human cases of H5N1 bird flu in the US since 2024, when the current outbreak took hold, mostly from exposure to animals or consumption of poorly cooked meat, with just one other case recorded from 2022, according to the Centres for Disease Control and Prevention (CDC). There have been around 950 cases of H5N1 bird flu in humans reported to the World Health Organisation (WHO), around 50% of which have resulted in the patient's death \u2013 which is a considerably higher mortality rate than COVID-19 at around 4% and seasonal flu at 1%.", + "rank": 1, + "retrieved_at": "2026-07-14T23:24:39.991723+00:00", + "published_date": "2025-01-07T10:01:29+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8712328767123287, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.5123406789755808, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "9ffdc0057a344379be66adc14f23ce19", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study/", + "canonical_url": "https://arstechnica.com/science/2024/06/bird-flu-virus-from-texas-human-case-kills-100-of-ferrets-in-cdc-study", + "domain": "arstechnica.com", + "title": "Bird flu virus from Texas human case kills 100% of ferrets in CDC study - Ars Technica", + "snippet": "To date, there have been four human cases of H5N1 in the US since the current global bird flu outbreak began in 2022\u2014one in a poultry farm worker in 2022 and three in dairy farm workers, all reported between the beginning of April and the end of May this year. Navigate Filter by topic Settings Front page layout Site theme Bird flu virus from Texas human case kills 100% of ferrets in CDC study H5N1 bird flu viruses have shown to be lethal in ferret model before. The CDC's data summary did not specify how the ferrets were infected in this study, but in other recent ferret H5N1 studies, the animals were infected by putting the virus in their noses. Ars has reached out to the agency for clarity on the inoculation route in the latest study and will update the story with any additional information provided. So far, the cases have been mild, the CDC noted, but given the results in ferrets, \"it is possible that there will be serious illnesses among people,\" the agency concluded. ", + "rank": 8, + "retrieved_at": "2026-07-14T23:24:39.993176+00:00", + "published_date": "2024-06-10T17:19:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29315068493150687, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.48241289458010717, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "0cbd712ea75946f0bf6f443638ecf211", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "canonical_url": "https://amp.cnn.com/cnn/2024/12/18/health/severe-bird-flu-louisiana-first-us-case", + "domain": "amp.cnn.com", + "title": "United States\u2019 first severe case of bird flu confirmed in Louisiana - CNN", + "snippet": "America\u2019s first severe case of bird flu confirmed in Louisiana | CNN CNN10 CNN 5 Things About CNN There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the CDC said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 9, + "retrieved_at": "2026-07-14T23:24:40.950267+00:00", + "published_date": "2024-12-18T16:26:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4739626761961485, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "72fb85ecf16b434eb24c40eba17aa932", + "question_id": "q1", + "query_id": "a05b681d77dc411c8e77a7eb45eb1862", + "engine": "tavily", + "url": "https://stthomassource.com/content/2025/02/11/dengue-h5n1-health-and-safety-update-for-agriculture-weekend/", + "canonical_url": "https://stthomassource.com/content/2025/02/11/dengue-h5n1-health-and-safety-update-for-agriculture-weekend", + "domain": "stthomassource.com", + "title": "Dengue, H5N1 Health and Safety Update for Agriculture Weekend - St, Thomas Source", + "snippet": "Dengue, H5N1 Health and Safety Update for Agriculture Weekend | St. Thomas Source \u201cTo date for 2025, we have 15 confirmed cases of dengue in the Territory, and all 15 of these are on St. Croix,\u201d said Dr. Esther Ellis, Territorial Epidemiologist for the VI Department of Health. Luis Hospital and Frederiksted Health Care Inc. In response, VI Department of Health teams have mobilized in the St. Croix district to inspect schools, apply larvicides in high-risk zones, and to educate schools on preventing mosquito bites and controlling breeding sites. The VI Department of Health has established a dengue hotline to provide you with information about dengue and prevention.", + "rank": 1, + "retrieved_at": "2026-07-14T23:24:43.607701+00:00", + "published_date": "2025-02-11T14:31:03+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9671232876712329, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.46323406789755806, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "21c012393f2b499983cc648992edf2c1", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/26/bird-flu-h5n1-explained-finland-will-start-vaccinating-humans-in-a-global-first/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/26/bird-flu-h5n1-explained-finland-will-start-vaccinating-humans-in-a-global-first", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Updates: Finland Will Be First Country To Vaccinate Humans - Forbes", + "snippet": "Breaking Bird Flu (H5N1) Explained: Finland Will Start Vaccinating Humans In A Global First Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:24:41.930310+00:00", + "published_date": "2024-06-26T12:54:24+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.33698630136986296, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.45891602144133414, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "8d41d4544b88465a86130289dff7d5d6", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/michigan-reports-3-more-h5n1-outbreaks-dairy-herds", + "domain": "cidrap.umn.edu", + "title": "Michigan reports 3 more H5N1 outbreaks in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news USDA experiments suggest H5N1 not viable in properly cooked ground beef CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Main navigation Michigan reports 3 more H5N1 outbreaks in dairy herds sarahluv/Flickr cc The Michigan Department of Agriculture and Rural Development (MDRAD) today reported three more H5N1 avian flu outbreaks in dairy herds, noting that it will send results to the US Department of Agriculture (USDA) National Veterinary Services Laboratory (NVSL) for confirmation. CDC boosts flu surveillance, starts pandemic review Meanwhile, in its latest update on its response to the H5N1 outbreaks in dairy herds, the CDC said it is developing a plan for enhanced surveillance over the summer, which will include increasing the number of flu specimens tested and subtyped at public health laboratories. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. In other developments, the Food and Drug Administration (FDA) recently detailed its next steps for monitoring the virus in that nation's milk supply and the Centers for Disease Control and Prevention (CDC) posted an update on its response steps, which includes an evaluation of the dairy outbreak virus with its Influenza Risk Assessment Tool (IRAT). ", + "rank": 6, + "retrieved_at": "2026-07-14T23:24:41.930376+00:00", + "published_date": "2024-05-20T20:21:54+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.23561643835616441, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.44247468731387735, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "74c8191e335944d49cbad77d52c509eb", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/studies-find-little-no-immunity-h5n1-avian-flu-virus-americans", + "domain": "cidrap.umn.edu", + "title": "Studies find little to no immunity to H5N1 avian flu virus in Americans - University of Minnesota Twin Cities", + "snippet": "Related news USDA reports reveal biosecurity risks at H5N1-affected dairy farms USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho This week's top reads USDA reports more H5N1 detections in mice and cats Officials reported 36 more detections in mice, as well as 4 more H5N1 positives in cats. Main navigation Studies find little to no immunity to H5N1 avian flu virus in Americans solarseven / iStock The American population has little to no pre-existing immunity to the H5N1 avian flu virus circulating on dairy and poultry farms, according to preliminary findings from ongoing testing by the Centers for Disease Control and Prevention (CDC). Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Also, the Iowa Department of Agriculture and Land Stewardship, in two separate statements, has reported three more outbreaks in dairy herds, two more in\u00a0Sioux County and one in\u00a0Plymouth County, both in the northwestern part of the state. The vaccine was developed by Seqirus UK, Ltd. Dairy herd outbreaks top 100; virus infects more poultry The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) has\u00a0confirmed 6 more H5N1 outbreaks in dairy herds, lifting the US total to 102.", + "rank": 3, + "retrieved_at": "2026-07-14T23:24:41.929910+00:00", + "published_date": "2024-06-17T19:53:55+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3123287671232877, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4360154854079809, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "c6fd0f816fbf4617a23d8d27723765b7", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/cdc-launches-new-influenza-wastewater-dashboard-states-report-more-h5n1", + "domain": "cidrap.umn.edu", + "title": "CDC launches new influenza A wastewater dashboard; states report more H5N1 in dairy herds - University of Minnesota Twin Cities", + "snippet": "Related news Wastewater testing finds H5N1 avian flu in 9 Texas cities Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain This week's top reads Wastewater testing finds H5N1 avian flu in 9 Texas cities Wastewater detections began in early March, and so far sequencing hasn't found any mutations linked to human adaptation. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. A wastewater dashboard; states report more H5N1 in dairy herds Smederevac/iStock The Centers for Disease Control and Prevention (CDC) today unveiled a new influenza A wastewater tracker, part of its surveillance for H5N1 avian influenza, as three states reported more detections in dairy herds. H5N1 detected in 4 more dairy herds In other developments, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today reported four more H5N1 detections in dairy herds, raising the total to 46. A wastewater dashboard; states report more H5N1 in dairy herds The tracker will help with surveillance, but it doesn't distinguish the influenza A subtype or determine the source of the virus. ", + "rank": 6, + "retrieved_at": "2026-07-14T23:24:40.950136+00:00", + "published_date": "2024-05-14T20:54:41+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.2191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4212656343061346, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "37f57b28157548e686929f59ca454909", + "question_id": "q1", + "query_id": "49ee28a8d50745e4aee65d8cee8cfea9", + "engine": "tavily", + "url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "canonical_url": "https://gizmodo.com/what-to-know-about-cat-food-recall-after-pet-dies-of-bird-flu-in-oregon-2000543274", + "domain": "gizmodo.com", + "title": "What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon - Gizmodo", + "snippet": "There have been other recent cases of H5N1 in cats traced back to improperly sterilized raw food, though this appears to be the first such case detected in the U.S. The silver lining is that no other H5N1 cases have been tied back to the Oregon cat or to the pet food (one human case of H5N1 was reported in the state this year, though it wasn\u2019t connected to dairy cows or milk). What to Know About Cat Food Recall After Pet Dies of Bird Flu in Oregon Star Wars: Skeleton Crew Just Went Full Goonies in an Adventure-Filled Episode If You Live in One of These States, You\u2019ll Have New Privacy Protections in 2025 10 Things We Liked, and 3 We Didn\u2019t, About Squid Game 2 The Cold Is Killing More Americans Every Year, Study Finds The Best Toys of 2024 The Weirdest Medical Cases of 2024 Doctor Who Reveals Its Next Companion", + "rank": 2, + "retrieved_at": "2026-07-14T23:24:42.760143+00:00", + "published_date": "2024-12-26T18:15:05+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8383561643835616, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4144877903513997, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "4a5ecfd5edf5406b9afec8e1fcfe8a2b", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "canonical_url": "https://ualrpublicradio.org/npr-news/2025-02-13/after-delay-cdc-releases-data-signaling-bird-flu-spread-undetected-in-cows-and-people", + "domain": "ualrpublicradio.org", + "title": "After delay, CDC releases data signaling bird flu spread undetected in cows and people - KUAR", + "snippet": "The first study on the H5N1 bird flu outbreak from the Centers for Disease Control and Prevention to make it to publication under the Trump administration came out Thursday. In the new study, researchers analyzed blood samples collected from 150 veterinarians who worked with cattle around the country and found that three of them had antibodies to the H5N1 virus, indicating recent infections. Tracking human infections in the dairy industry has been an ongoing challenge throughout the bird flu outbreak. Even though the new CDC research turned up a \"low\" number of past human infections,\" it's not actually clear \"how many participants were truly exposed,\" says Gray.", + "rank": 2, + "retrieved_at": "2026-07-14T23:24:40.949602+00:00", + "published_date": "2025-02-13T18:05:19+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9726027397260274, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4083472304943419, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "88c885d1edd64ede9f47bb4f8729cf77", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india/", + "canonical_url": "https://forbes.com/sites/ariannajohnson/2024/06/12/bird-flu-h5n1-explained-bird-flu-h5n1-explained-toddler-infected-with-another-strain-second-human-case-in-india", + "domain": "forbes.com", + "title": "Bird Flu (H5N1) Explained: Bird Flu (H5N1) Explained: Toddler Infected With Another Strain\u2014Second Human Case In ... - Forbes", + "snippet": "May 30Another human case of bird flu has been detected in a dairy farm worker in Michigan\u2014though the cases aren\u2019t connected\u2014and this is the first person in the U.S. to report respiratory symptoms connected to bird flu, though their symptoms are \u201cresolving,\u201d according to the Centers for Disease Control and Prevention. Toddler Infected With Another Strain\u2014Second Human Case In India Topline Here\u2019s the latest news about a global outbreak of H5N1 bird flu that started in 2020, and recently spread among cattle in U.S. states and marine mammals across the world, which has health officials closely monitoring it and experts concerned the virus could mutate and eventually spread to humans, where it has proven rare but deadly. May 14The Centers for Disease Control and Prevention released influenza A waste water data for the weeks ending in April 27 and May 4, and found several states like Alaska, California, Florida, Illinois and Kansas had unusually high levels, though the agency isn\u2019t sure if the virus came from humans or animals, and isn\u2019t able to differentiate between influenza A subtypes, meaning the H5N1 virus or other subtypes may have been detected. May 1The Food and Drug Administration confirmed dairy products are still safe to consume, announcing it tested grocery store samples of products like infant formula, toddler milk, sour cream and cottage cheese, and no live traces of the bird flu virus were found, although some dead remnants were found in some of the food\u2014though none in the baby products. June 5A new study examining the 2023 bird flu outbreak in South America that killed around 17,400 elephant seal pups and 24,000 sea lions found the disease spread between the animals in several countries, the first known case of transnational virus mammal-to-mammal bird flu transmission. ", + "rank": 7, + "retrieved_at": "2026-07-14T23:24:39.993132+00:00", + "published_date": "2024-06-12T13:34:10+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "trusted_media", + "domain_score": 0.6, + "keyword_overlap_score": 0.0, + "freshness_score": 0.29863013698630136, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.4073785416489407, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "f272c9f73bb243d1b26b3758736a1138", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/usda-reports-reveal-biosecurity-risks-h5n1-affected-dairy-farms", + "domain": "cidrap.umn.edu", + "title": "USDA reports reveal biosecurity risks at H5N1-affected dairy farms - University of Minnesota Twin Cities", + "snippet": "In other H5N1 developments: Related news USDA reports more H5N1 detections in mice and cats Study shows 'not surprising' fatal spread of avian flu in ferrets Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow H5 influenza wastewater dashboard launches Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk This week's top reads Man dies after H5N2 avian flu in Mexico; Minnesota reports first case in dairy cow Minnesota and Iowa report infected dairy herds. Yesterday, the Iowa Department of Agriculture and Land Stewardship reported the state's third outbreak in a dairy herd, which affected a second location in Sioux County. Updates on human investigations, vaccine production Responding to questions about Michigan's second case-patient in a dairy worker, who, unlike the other previous patients, had respiratory symptoms, Nirav Shah, JD, MD, principal deputy director for the Centers for Disease Control and Prevention (CDC), said the polymerase chain reaction cycle threshold\u00a0 (Ct) value for the patient's sample was high, suggesting a lower amount of viral RNA in the sample. Main navigation USDA reports reveal biosecurity risks at H5N1-affected dairy farms Naked King/iStock Shared equipment and shared personnel working on multiple dairy farms are some of the main risk factors for ongoing spread of highly pathogenic H5N1 avian flu in dairy cows, the US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) said today in a pair of new epidemiologic reports. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. One of the reports is an overview based on the results of questionnaires from affected dairy herds, and the other is a deep dive into the dairy cow and poultry outbreaks in Michigan, the state hit hardest by outbreaks in dairy cows, which now number at least 94. ", + "rank": 4, + "retrieved_at": "2026-07-14T23:24:41.929965+00:00", + "published_date": "2024-06-13T20:33:16+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.3013698630136986, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.40285437760571763, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "066552a945004537a0241908e638d894", + "question_id": "q1", + "query_id": "a05b681d77dc411c8e77a7eb45eb1862", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5-influenza-wastewater-dashboard-launches", + "domain": "cidrap.umn.edu", + "title": "H5 influenza wastewater dashboard launches | CIDRAP - University of Minnesota Twin Cities", + "snippet": "In other avian flu developments: Related news Avian flu infects more dairy cows in Michigan Second dairy farm worker infected with H5 avian flu in Michigan Alpacas infected with H5N1 avian flu in Idaho Study confirms infection in mice fed H5N1-contaminated raw milk USDA expands support for H5N1 response to more dairy producers Michigan reports H5 avian flu in dairy farm worker Australia reports imported human H5N1 avian flu case and unrelated high-path poultry outbreak Survey: States and territories able to test for highly pathogenic H5N1 This week's top reads Alpacas infected with H5N1 avian flu in Idaho In other developments, H5N1 was detected in feral cats in New Mexico and more dairy herds in affected states. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Iowa disaster proclamation Governor Reynolds yesterday announced the disaster proclamation for highly pathogenic avian flu in Cherokee County, the same day the Iowa Department of Agriculture and Land Stewardship\u00a0reported an outbreak at a commercial turkey farm in the county. Main navigation H5 influenza wastewater dashboard launches Luke Jones/Flickr cc WastewaterSCAN, a national wastewater monitoring system based at Stanford University in partnership with Emory University, today launched an\u00a0H5 avian influenza wastewater dashboard today, which shows detections at about a dozen locations, mostly in Texas and Michigan. Second dairy farm worker infected with H5 avian flu in Michigan Unlike similar earlier cases in the United States, the newly reported patient had respiratory symptoms. ", + "rank": 6, + "retrieved_at": "2026-07-14T23:24:43.607769+00:00", + "published_date": "2024-06-03T20:48:47+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.273972602739726, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3876146515783204, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "3b3b878852e54dddbf81810855eab26d", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "canonical_url": "https://aol.com/news/pace-severity-human-h5n1-cases-221224798.html", + "domain": "aol.com", + "title": "As pace and severity of human H5N1 cases accelerate, NIH leaders call for more action on bird flu - AOL", + "snippet": "Most human cases of bird flu in North America have been mild, a fact that\u2019s underscored by a new study of the first 46 confirmed human H5N1 infections in the United States this year. The report of the first 46 human cases, also published Tuesday in the New England Journal of Medicine by researchers at the US Centers for Disease Control and Prevention, shows that most were exposed to infected animals or to raw milk. Taken together, she writes, the new reports of human cases show that the pace of human H5N1 infections has been accelerating. AOL Where to shop today's best deals: Kate Spade, Amazon, Walmart and more ----------------------------------------------------------------------", + "rank": 6, + "retrieved_at": "2026-07-14T23:24:39.993080+00:00", + "published_date": "2025-01-04T02:31:46+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.863013698630137, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3865187611673616, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "afa8dafef54645a497e6b3ac55c8a621", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/h5n1-confirmed-5-more-us-dairy-herds-more-cats", + "domain": "cidrap.umn.edu", + "title": "H5N1 confirmed in 5 more US dairy herds, more cats - University of Minnesota Twin Cities", + "snippet": "Related news H5N1 strikes dairy herd in Michigan, large poultry farm in Colorado Animal experiments shed more light on behavior of H5N1 from dairy cows CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit HHS awards Moderna $176 million to develop mRNA H5 avian flu vaccine More evidence pasteurization inactivates H5N1 avian flu virus in milk USDA spells out financial assistance to offset H5N1-linked milk losses Scientists expand H5N1 testing in dairy products, launch human serology study Experiments show H5N1 risk to dairy cows not exclusive to subtype infecting US herds This week's top reads CDC confirms 4th human case of H5N1 avian flu as more dairy herds in Colorado hit The infected farm worker is from Colorado, which has had the most affected dairy herds in the past month. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation H5N1 confirmed in 5 more US dairy herds, more cats Khaligo/iStock The US Department of Agriculture (USDA) Animal and Plant Health Inspection Service (APHIS) today added five more dairy herds in three states to its list of H5N1 avian flu outbreak confirmations. H5N1 confirmed in 5 more US dairy herds, more cats The additional cat detections are from 2 states battling the virus in cows: Minnesota and Michigan. More cat and wild-bird positives In related developments, APHIS confirmed H5N1 detections in three more domestic cats, two from Minnesota and one from Michigan, raising the total since 2022 to 33. ", + "rank": 5, + "retrieved_at": "2026-07-14T23:24:40.950090+00:00", + "published_date": "2024-07-10T19:44:27+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.37534246575342467, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3831864204883859, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "8e4d2cecc6e2461a85aca37887610cef", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.yahoo.com/news/america-first-severe-case-bird-172433528.html", + "canonical_url": "https://yahoo.com/news/america-first-severe-case-bird-172433528.html", + "domain": "yahoo.com", + "title": "America\u2019s first severe case of bird flu confirmed in Louisiana - Yahoo! Voices", + "snippet": "There have been 61 reported human cases of H5 bird flu in the United States since April. A patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the US Centers for Disease Control and Prevention said, the first such case in the United States. \u201cThis case does not change CDC\u2019s overall assessment of the immediate risk to the public\u2019s health from H5N1 bird flu, which remains low,\u201d the agency said in a statement. There have been 61 reported human cases of H5 bird flu in the United States since April, mostly among dairy and poultry workers.", + "rank": 4, + "retrieved_at": "2026-07-14T23:24:39.992578+00:00", + "published_date": "2024-12-18T17:24:33+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.37479600952948183, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "903c67209cfa4251962f461061b298a1", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://www.cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "canonical_url": "https://cidrap.umn.edu/avian-influenza-bird-flu/wastewater-testing-finds-h5n1-avian-flu-9-texas-cities", + "domain": "cidrap.umn.edu", + "title": "Wastewater testing finds H5N1 avian flu in 9 Texas cities - University of Minnesota Twin Cities", + "snippet": "In other developments: Related news Feds announces assistance for US farmers affected by H5N1 avian flu Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals USDA reports more H5N1 detections in poultry, wild birds With H5N1 avian flu silently spreading in US cattle, wastewater testing could be key Studies yield more clues about H5N1 avian flu susceptibility, spread in dairy cows Case report bolsters evidence for H5N1 avian flu spread from cow to Texas dairy worker USDA genome study sheds light on H5N1 avian flu spillover to cows, but data gaps remain FDA finds no live H5N1 avian flu virus in sour cream or cottage cheese, will assess raw milk This week's top reads Study: HHS's COVID vaccine campaign saved $732 billion in averted infections, costs Researchers say the campaign encouraged 22 million Americans to complete their primary COVID-19 vaccine series, preventing nearly 2.6 million infections. Our underwriters Unrestricted financial support provided by Help make CIDRAP's vital work possible Help make CIDRAP's vital work possible Contact Us CIDRAP - Center for Infectious Disease Research & Policy Research and Innovation Office, University of Minnesota, Minneapolis, MN Email us \u00a9 2024 Regents of the University of Minnesota. Main navigation Wastewater testing finds H5N1 avian flu in 9 Texas cities varius-studios/ iStock Researchers who sequenced viruses from wastewater samples from 10 Texas cities found H5N1 avian flu virus in 9 of them, sometimes at levels that rivaled seasonal flu. On X, Mike Tisza, PhD, the first author of the study and assistant professor of virology and microbiology at Baylor, said it's still not clear where the viruses came from, but the evidence tilts toward an animal source, because the researchers didn't see any mutations with known links to human adaptation. Colorado officials probe source of H5N1 in cows as USDA confirms more infected mammals Monitoring of about 70 farm workers found no symptoms, and the state's wastewater sampling pilot has found no flu rise. ", + "rank": 9, + "retrieved_at": "2026-07-14T23:24:41.930474+00:00", + "published_date": "2024-05-13T20:52:30+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "ngo", + "domain_score": 0.4, + "keyword_overlap_score": 0.0, + "freshness_score": 0.21643835616438356, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3735278935874528, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "4cce678fec57438c9f9ed6e2da2fc86b", + "question_id": "q1", + "query_id": "4604fc371a9c424f855da79aab5cd03b", + "engine": "tavily", + "url": "https://gizmodo.com/toyotas-woven-city-is-coming-together-2000546629", + "canonical_url": "https://gizmodo.com/toyotas-woven-city-is-coming-together-2000546629", + "domain": "gizmodo.com", + "title": "Toyota\u2019s \u2018Woven City\u2019 Is Coming Together - Gizmodo", + "snippet": "Live Updates From CES 2025 in Las Vegas \ud83d\udd34 Welcome to the \u2018Technosphere\u2019: The Hidden Carbon Vault Inside Your Gadgets AMD\u2019s Powerful Radeon 9000 Gaming CPUs Are Coming to Laptops Toyota\u2019s \u2018Woven City\u2019 Is Coming Together Elon\u2019s European Invasion Is Pissing Off World Leaders Bird Flu Patient in Louisiana Becomes First Human Death in Current H5N1 Outbreak Sealed With a Kiss: The Unexpected Origin Story of Pluto and Its Moon Charon 30 Years Ago Today, It Was Friday in California Live Updates From CES 2025 in Las Vegas \ud83d\udd34 1/6/2025, 4:51 pm Welcome to the \u2018Technosphere\u2019: The Hidden Carbon Vault Inside Your Gadgets 1/6/2025, 4:45 pm AMD\u2019s Powerful Radeon 9000 Gaming CPUs Are Coming to Laptops 1/6/2025, 4:32 pm Toyota\u2019s \u2018Woven City\u2019 Is Coming Together 1/6/2025, 4:30 pm ", + "rank": 2, + "retrieved_at": "2026-07-14T23:24:41.929576+00:00", + "published_date": "2025-01-06T21:30:47+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8684931506849315, + "duplicate_cluster_id": null, + "retrieval_reason": "policy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3588058368076236, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "a7e5f95df59740feb65da24bff63fcca", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment/", + "canonical_url": "https://globalvillagespace.com/GVS-Health/third-case-of-h5n1-avian-flu-confirmed-in-the-us-cdc-urges-vigilance-and-personal-protective-equipment", + "domain": "globalvillagespace.com", + "title": "Third Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment - Global Village space", + "snippet": "CDC Confirms Third Case of H5N1 Avian Flu in the US The US Centers for Disease Control and Prevention (CDC) confirmed a third case of H5N1 avian flu in the United States on Thursday, marking the second case in Michigan alone. \u201cThird Case of H5N1 Avian Flu Confirmed in the US, CDC Urges Vigilance and Personal Protective Equipment\u201d USDA Announces Funding to Combat H5N1 Outbreak in US Livestock In a recent development, H5N1 was detected in the muscle of a dairy cow intended for beef consumption. Concerns Over Respiratory Symptoms \u201cThis is the first time in the US outbreak a person with H5N1 has displayed respiratory symptoms, unlike the previous two cases with only conjunctivitis, commonly known as \u2018pink eye,\u2019\u201d said Dr. Nirav Shah, principal deputy director of the CDC, during a press briefing. CDC Urges Use of Personal Protective Equipment Despite Summer Heat Dr. Shah emphasized the importance of using personal protective equipment for workers in close contact with animals, despite the challenges posed by hot summer weather. According to the CDC, only 39 individuals have been tested for H5N1 during the 2024 outbreak in the United States.", + "rank": 3, + "retrieved_at": "2026-07-14T23:24:40.950028+00:00", + "published_date": "2024-06-08T21:21:08+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.28767123287671237, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3539845145920191, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "a60b35ebef124eca8cf9945129c5e963", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.mercurynews.com/2024/12/19/how-do-people-catch-bird-flu/", + "canonical_url": "https://mercurynews.com/2024/12/19/how-do-people-catch-bird-flu", + "domain": "mercurynews.com", + "title": "How do people catch bird flu? - The Mercury News", + "snippet": "November 16, 2005 \u2013 The World Health Organization confirms two human cases of bird flu in China, including a female poultry worker who died from the H5N1 strain. February 2022 \u2013 The USDA confirms that wild birds and domestic poultry in the United States have tested positive for the H5N1 strain of avian flu. The animals that tested positive were on a farm in Idaho where poultry had tested positive for the virus and were culled in May. November 22, 2024 \u2013 The CDC announces a case of H5 bird flu has been confirmed in a child in California. December 18, 2024 \u2013 The CDC confirms a patient in Louisiana has been hospitalized with a severe case of H5N1 bird flu, the first such case in the US.", + "rank": 10, + "retrieved_at": "2026-07-14T23:24:40.950311+00:00", + "published_date": "2024-12-19T19:54:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8191780821917808, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3525699821322216, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "fa8c5cb6c0614cb1a308c685e0497d47", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "canonical_url": "https://gizmodo.com/cdc-confirms-first-severe-case-of-h5n1-bird-flu-in-u-s-2000540565", + "domain": "gizmodo.com", + "title": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. - Gizmodo", + "snippet": "CDC Confirms First \u2018Severe\u2019 Case of H5N1 Bird Flu in U.S. The U.S. has seen 61 confirmed human cases to date. The CDC has declared the first \u201csevere\u201d case of H5N1 bird flu in the U.S., according to a press release published Wednesday. The CDC launched a bird flu tracker online that breaks down the confirmed cases in humans, as well as the U.S. states where they\u2019ve been identified, and the animal believed to have been the source of the infection. ScienceHealth Canada\u2019s First Human Case of H5 Bird Flu Leaves Teen in Critical Condition -------------------------------------------------------------------------- British Columbia health officials have yet to identify a likely source of the infection, though none of the teen's contacts have tested positive for the virus so far.", + "rank": 10, + "retrieved_at": "2026-07-14T23:24:39.994069+00:00", + "published_date": "2024-12-18T21:35:12+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35229600952948187, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "64dbc8901ae542139ddeae767d5a5a30", + "question_id": "q1", + "query_id": "49ee28a8d50745e4aee65d8cee8cfea9", + "engine": "tavily", + "url": "https://www.morningagclips.com/agriculture-department-tries-to-rehire-fired-workers-tied-to-bird-flu-response/", + "canonical_url": "https://morningagclips.com/agriculture-department-tries-to-rehire-fired-workers-tied-to-bird-flu-response", + "domain": "morningagclips.com", + "title": "Agriculture Department Tries to Rehire Fired Workers Tied to Bird Flu Response - Morning Ag Clips -", + "snippet": "In response to the recent spread of H5N1 in lactating dairy cows to California and the resulting human cases and the human cases in Washington resulting from an outbreak [\u2026] USDA Confirms HPAI in Backyard Non-Poultry Flock in Hawaii November 20, 2024 WASHINGTON \u2014 The United States Department of Agriculture\u2019s (USDA) Animal and Plant Health Inspection Service (APHIS) has confirmed the presence of highly pathogenic avian influenza (HPAI) in a non-commercial backyard flock (non-poultry) in Honolulu County, Hawaii. This is the first case of HPAI in domestic birds in Hawaii during this outbreak, which began in February [\u2026] APHIS: The Importance of Biosecurity in Protecting Animals from HPAI December 17, 2024 WASHINGTON \u2014 The United States Department of Agriculture\u2019s (USDA) Animal and Plant Health Inspection Service (APHIS) is reminding all animal caretakers of the critical importance of biosecurity in protecting animals from Highly Pathogenic Avian Influenza (HPAI) H5N1.", + "rank": 9, + "retrieved_at": "2026-07-14T23:24:42.760249+00:00", + "published_date": "2025-02-20T12:39:53+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9917808219178083, + "duplicate_cluster_id": null, + "retrieval_reason": "historical_analogy", + "contains_aggregator_forecast": false, + "search_stage_score": 0.35193170538018664, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "f19e9092bdcd4273b9e64d63c8005e7a", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "canonical_url": "https://newsweek.com/bird-flu-map-update-us-cases-rise-14-1950227", + "domain": "newsweek.com", + "title": "Bird Flu Map Update as US Cases Rise to 14 - Newsweek", + "snippet": "In addition to being the first case not linked to contact with a sick animal, Missouri officials said that the case was the first detected using the state's flu surveillance system, rather than protocol specifically tailored to detect H5N1 cases related to the recent outbreak in livestock like dairy cows and poultry. The latest infection makes Missouri the fourth U.S. state with a human case this year. The following map created by Newsweek shows that all of this year's human H5N1 cases have been limited to Colorado, Texas, Michigan and Missouri: No cases of human-to-human transmission have ever been detected in the U.S. In humans, bird flu can range in severity from no symptoms to mild symptoms like eye infections or upper respiratory illness.", + "rank": 5, + "retrieved_at": "2026-07-14T23:24:39.993028+00:00", + "published_date": "2024-09-07T03:17:31+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.536986301369863, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3393508040500298, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "9d1fe9e2ff6d41faafeeffbe2f63f5d8", + "question_id": "q1", + "query_id": "a05b681d77dc411c8e77a7eb45eb1862", + "engine": "tavily", + "url": "https://www.fiercehealthcare.com/providers/louisiana-department-health-reports-first-fatal-case-h5n1-bird-flu", + "canonical_url": "https://fiercehealthcare.com/providers/louisiana-department-health-reports-first-fatal-case-h5n1-bird-flu", + "domain": "fiercehealthcare.com", + "title": "Louisiana Department of Health reports first fatal case of H5N1 bird flu in the US - Fierce healthcare", + "snippet": "State of Louisiana reports first fatal H5N1 bird flu case Louisiana Department of Health reports first fatal case of H5N1 bird flu in the US A Louisiana patient who had been hospitalized with the first human case of highly pathogenic avian influenza, or H5N1, in Louisiana and the U.S. has died, the state's health department reported Monday. The best way for individuals to protect themselves from H5N1 is to avoid sources of exposure, health officials said, which means avoiding direct contact with wild birds and other animals infected with or suspected to be infected with bird flu viruses. public health bird flu H5N1 infectious disease Hospitals Practices Providers", + "rank": 10, + "retrieved_at": "2026-07-14T23:24:43.607806+00:00", + "published_date": "2025-01-06T22:30:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8684931506849315, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3379362715902323, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "ee7fddb6ac89437d98dfa327462e368a", + "question_id": "q1", + "query_id": "14fe43bfe4f84524ad26d6a5286a4111", + "engine": "tavily", + "url": "https://www.democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007/", + "canonical_url": "https://democratandchronicle.com/story/news/health/2025/02/11/flu-influenza-cases-increase-2025-symptoms-cdc/78412536007", + "domain": "democratandchronicle.com", + "title": "Have the flu or know someone with it? Flu cases surge to highest levels in 15 years, CDC says - Democrat & Chronicle", + "snippet": "Flu cases 2025: Levels have increased to highest in 15 years, CDC says Flu cases surge to highest levels in 15 years, CDC says There are 12 states in the U.S. that have \"'very high\" flu activity, according to the CDC. For the first time this flu season, overall levels of the respiratory illness have reached \"very high\" activity despite a decrease in COVID-19 infections in recent months, according to the CDC. One of the states where flu levels are growing is Kentucky, where the probability of an influenza epidemic is growing\u00a0by 92.45%, the CDC said. The CDC still considers the\u00a0general population at \"low\" risk\u00a0for catching bird flu, but one 65-year-old Louisiana resident with complicating health conditions did die from the disease.", + "rank": 7, + "retrieved_at": "2026-07-14T23:24:40.950187+00:00", + "published_date": "2025-02-11T19:26:32+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.9671232876712329, + "duplicate_cluster_id": null, + "retrieval_reason": "trend", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3346626393261295, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "92f8fa9970ab41d4a5b5b56bc5413ecc", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "canonical_url": "https://livescience.com/health/flu/latest-human-h5n1-bird-flu-case-in-us-is-1st-to-cause-respiratory-symptoms", + "domain": "livescience.com", + "title": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms - Livescience.com", + "snippet": "Latest human H5N1 bird flu case in US is 1st to cause respiratory symptoms This infection, tied to an ongoing outbreak in cows, is the first in the U.S. to cause respiratory symptoms, but not the first H5N1 case in the world to do so. Related: H5N1: What to know about the bird flu cases in cows, goats and people \"This is the first human case of H5 in the United States to report more typical symptoms of acute respiratory illness associated with influenza virus infection, including A(H5N1) viruses,\" the CDC reported. H5N1 bird flu has spread to human from cow in 2nd probable case, CDC reports H5N1: What to know about the bird flu cases in cows, goats and people China lands Chang'e 6 sample-return probe on far side of the moon Live Science is part of Future US Inc, an international media group and leading digital publisher. \u201421-year-old student dies of H5N1 bird flu in Vietnam \u20141st polar bear death from bird flu spells trouble for species \u2014China reported 1st human death from H3N8 bird flu, WHO says With that possibility in mind, the CDC continues to closely monitor for unusual flu activity across the country. A third human case of bird flu has been linked to the ongoing outbreak in cows on U.S. dairy farms \u2014 and this one came with respiratory symptoms, such as cough, the Centers for Disease Control and Prevention (CDC) reported May 30. ", + "rank": 3, + "retrieved_at": "2026-07-14T23:24:39.992439+00:00", + "published_date": "2024-06-03T19:09:13+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.273972602739726, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3330494341870161, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + }, + { + "id": "5bb9225ea86845cf893a9cfceb5dc85c", + "question_id": "q1", + "query_id": "7fd736cd485e4c399e000c03863031bc", + "engine": "tavily", + "url": "https://www.foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "canonical_url": "https://foxnews.com/health/first-severe-case-bird-flu-detected-us-cdc-confirms", + "domain": "foxnews.com", + "title": "First severe case of bird flu detected in US, CDC confirms - Fox News", + "snippet": "Severe case of H5N1 bird flu detected in US, CDC confirms | Fox News Fox News FOX News Go Fox News The U.S. Centers for Disease Control and Prevention said on Wednesday that a patient has been hospitalized with a severe case of H5N1 infection in Louisiana, marking the first known instance of a severe human illness linked to the bird flu virus in the United States. The CDC said that partial viral genome data from the infected patient shows that the virus belongs to the D1.1 genotype, recently detected in wild birds and poultry in the United States and in recent human cases in British Columbia, Canada, and Washington state. Fox News Health FOX News Go Fox News", + "rank": 9, + "retrieved_at": "2026-07-14T23:24:39.993952+00:00", + "published_date": "2024-12-18T16:59:00+00:00", + "file_type": null, + "language": null, + "source_id": null, + "is_official_domain": false, + "source_tier": "unknown", + "domain_score": 0.2, + "keyword_overlap_score": 0.0, + "freshness_score": 0.8164383561643835, + "duplicate_cluster_id": null, + "retrieval_reason": "latest_data", + "contains_aggregator_forecast": false, + "search_stage_score": 0.3148322414135398, + "published_date_source": "backend", + "cutoff_applied": "2025-02-24T00:00:00+00:00" + } +] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 86323fa..cf9dfae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,4 +10,5 @@ docling[chunking]>=2.90,<3.0 # TableFormer-based refinement for borderless / mer tiktoken>=0.7,<1.0 # Approximate token counting (cl100k_base encoding) openai>=1.0,<2.0 # OpenAI API client (used by filtering stage LLM calls) pycountry>=24.0 # ISO 3166-1 country name → alpha-2 lookup (insight stage location resolution) +TableauScraper>=0.1.29,<1.0 # Tableau workbook extraction for dashboard-backed custom scrapers pytest>=8.0,<9.0 # Testing diff --git a/scripts/run_historical_trajectory.py b/scripts/run_historical_trajectory.py index dff087a..f08f60f 100644 --- a/scripts/run_historical_trajectory.py +++ b/scripts/run_historical_trajectory.py @@ -123,6 +123,11 @@ def _parse_args(argv: List[str]) -> argparse.Namespace: ) p.add_argument("--no-baseline", action="store_true", help="Skip the retrieval-free baseline.") p.add_argument("--no-cache", action="store_true", help="Disable the search-stage cache.") + p.add_argument( + "--no-history-context", + action="store_true", + help="Disable prior-run forecast/insight context during forecasting.", + ) p.add_argument( "--max-input-tokens", type=int, default=None, help="Override InsightConfig.max_input_tokens_per_run.", @@ -181,6 +186,8 @@ def _run_one_cutoff( orch_argv.append("--no-baseline") if args.no_cache: orch_argv.append("--no-cache") + if args.no_history_context: + orch_argv.append("--no-history-context") if args.max_input_tokens is not None: orch_argv += ["--max-input-tokens", str(args.max_input_tokens)] if args.verbose: