examples: RawPost + ExtractedExample + Summary Pydantic schemas
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
8f2a80f563
commit
c9bdf537ac
3 changed files with 133 additions and 0 deletions
21
fire_planner/examples/__init__.py
Normal file
21
fire_planner/examples/__init__.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
"""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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue