22 lines
486 B
Python
22 lines
486 B
Python
|
|
"""Reddit FIRE examples ingest + lookup.
|
||
|
|
|
||
|
|
Scrapes a curated set of FIRE subreddits, extracts structured fields
|
||
|
|
with a local LLM, and exposes per-country summaries to the simulator
|
||
|
|
and API. Informational overlay only — does not drive scenario inputs.
|
||
|
|
"""
|
||
|
|
from fire_planner.examples.models import (
|
||
|
|
ExtractedExample,
|
||
|
|
FiStatus,
|
||
|
|
RawPost,
|
||
|
|
Summary,
|
||
|
|
SummaryStats,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"ExtractedExample",
|
||
|
|
"FiStatus",
|
||
|
|
"RawPost",
|
||
|
|
"Summary",
|
||
|
|
"SummaryStats",
|
||
|
|
]
|