from typing import Any, TypedDict, Optional class BarkParams(TypedDict): _type: Optional[str] burn_in_prompt: str | Any text: str history_prompt: str | Any history_prompt_semantic: Optional[str | Any] text_temp: float waveform_temp: float output_full: Optional[bool] seed: int max_length: int