We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7ac83 commit f2f1cc0Copy full SHA for f2f1cc0
src/cohere/client.py
@@ -5,6 +5,7 @@
5
from . import BaseCohereEnvironment
6
from .base_client import BaseCohere
7
8
+
9
class Client(BaseCohere):
10
def __init__(
11
self,
@@ -16,7 +17,8 @@ def __init__(
16
17
timeout: typing.Optional[float] = 60,
18
httpx_client: typing.Optional[httpx.Client] = None,
19
):
- super(BaseCohere, self).__init__(
20
+ BaseCohere.__init__(
21
+ self,
22
base_url=base_url,
23
environment=environment,
24
client_name=client_name,
0 commit comments