BarkParams.py 335 B

1234567891011121314
  1. from typing import Any, TypedDict, Optional
  2. class BarkParams(TypedDict):
  3. _type: Optional[str]
  4. burn_in_prompt: str | Any
  5. text: str
  6. history_prompt: str | Any
  7. history_prompt_semantic: Optional[str | Any]
  8. text_temp: float
  9. waveform_temp: float
  10. output_full: Optional[bool]
  11. seed: int
  12. max_length: int