diff --git a/clients/python/text_generation/client.py b/clients/python/text_generation/client.py index 947bca37..86c6af06 100644 --- a/clients/python/text_generation/client.py +++ b/clients/python/text_generation/client.py @@ -290,7 +290,6 @@ class AsyncClient: headers: Optional[Dict[str, str]] = None, cookies: Optional[Dict[str, str]] = None, timeout: int = 10, - cert: Optional[Union[str, tuple[str, str]]] = None, ): """ Args: @@ -302,15 +301,11 @@ class AsyncClient: Cookies to include in the requests timeout (`int`): Timeout in seconds - cert (`Optional[Union[str, tuple[str, str]]]`): - If String, path to ssl client cert file (.pem). - If Tuple, ('cert', 'key') pair. """ self.base_url = base_url self.headers = headers self.cookies = cookies self.timeout = ClientTimeout(timeout * 60) - self.cert = cert async def generate( self,