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