We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f817c95 commit 08308c8Copy full SHA for 08308c8
vvclient/http.py
@@ -61,3 +61,6 @@ async def core_versions(self) -> List[str]:
61
62
async def initialize_speaker(self, params: Dict[str, Union[str, int]]) -> None:
63
return await self.request(Route("POST", "/initialize_speaker"), params=params)
64
+
65
+ async def is_initialized_speaker(self, params: Dict[str, Union[str, int]) -> bool:
66
+ return await self.request(Route("GET", "/is_initialized_speaker"), params=params)
0 commit comments