Currently, TTSModel.get_tts_model_voices returns Any and I didn't find any clues indicating the concrete code producing the return value of get_tts_model_voices.
|
def get_tts_model_voices( |
|
self, |
|
*, |
|
provider: str, |
|
model: str, |
|
credentials: dict[str, Any], |
|
language: str | None, |
|
) -> Any: ... |
How should we type this function's return value?
Currently,
TTSModel.get_tts_model_voicesreturnsAnyand I didn't find any clues indicating the concrete code producing the return value ofget_tts_model_voices.graphon/src/graphon/model_runtime/protocols/tts_runtime.py
Lines 26 to 33 in bfe73c1
How should we type this function's return value?