Ticker + reporting period (e.g. ``AAPL`` / ``2026Q1``).
| 8 | |
| 9 | |
| 10 | class TickerPeriod(BaseInput): |
| 11 | """Ticker + reporting period (e.g. ``AAPL`` / ``2026Q1``).""" |
| 12 | |
| 13 | type: Literal["ticker_period"] = "ticker_period" |
| 14 | ticker: str |
| 15 | period: str # e.g. "2026Q1" |
| 16 | |
| 17 | |
| 18 | class TranscriptText(BaseInput): |
nothing calls this directly
no outgoing calls
no test coverage detected