Przeglądaj źródła

Merge branch 'feature/text-to-speech' of Web/pq-web-ai into master

huangzhichao 2 godzin temu
rodzic
commit
db2abc6d04
2 zmienionych plików z 0 dodań i 2 usunięć
  1. 0 1
      app/providers/base.py
  2. 0 1
      app/services/speech_service.py

+ 0 - 1
app/providers/base.py

@@ -20,6 +20,5 @@ class SpeechProvider(Protocol):
         text: str,
         *,
         model: Optional[str] = None,
-        format: Optional[str] = None,
     ) -> TextToSpeechResponse:
         ...

+ 0 - 1
app/services/speech_service.py

@@ -14,5 +14,4 @@ class SpeechService:
             req.filename,
             req.text,
             model=req.model,
-            format=req.format,
         )