Transformers How to use drbaph/OmniVoice-bf16 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-to-speech", model="drbaph/OmniVoice-bf16") # Load model directly
from transformers import OmniVoice
model = OmniVoice.from_pretrained("drbaph/OmniVoice-bf16", dtype="auto")