diff --git a/src/cohere/client.py b/src/cohere/client.py index 9e698c0df..62c72f3dd 100644 --- a/src/cohere/client.py +++ b/src/cohere/client.py @@ -5,6 +5,7 @@ from . import BaseCohereEnvironment from .base_client import BaseCohere + class Client(BaseCohere): def __init__( self, @@ -16,7 +17,8 @@ def __init__( timeout: typing.Optional[float] = 60, httpx_client: typing.Optional[httpx.Client] = None, ): - super(BaseCohere, self).__init__( + BaseCohere.__init__( + self, base_url=base_url, environment=environment, client_name=client_name,