Generate with Song Description
| 33 | |
| 34 | |
| 35 | class DescriptionModeGenerateParam(BaseModel): |
| 36 | """Generate with Song Description""" |
| 37 | |
| 38 | gpt_description_prompt: str |
| 39 | make_instrumental: bool = False |
| 40 | mv: str = Field( |
| 41 | default='chirp-v3-0', |
| 42 | description="model version, default: chirp-v3-0", |
| 43 | examples=["chirp-v3-0"], |
| 44 | ) |
| 45 | |
| 46 | prompt: str = Field( |
| 47 | default="", |
| 48 | description="Placeholder, keep it as an empty string, do not modify it", |
| 49 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected