from typing import TypedDict class AIResponse(TypedDict): answer: str follow_up_options: list[str] class FollowUpOptions(TypedDict): options: list[str]