File size: 226 Bytes
9aaf513
 
 
 
 
 
1
2
3
4
5
6
7
from pydantic import BaseModel, Field


class BGMSeparationResult(BaseModel):
    instrumental_hash: str = Field(..., description="Instrumental file hash")
    vocal_hash: str = Field(..., description="Vocal file hash")