Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
billytrend-cohere committed Feb 20, 2024
1 parent 5d7ac83 commit f2f1cc0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cohere/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from . import BaseCohereEnvironment
from .base_client import BaseCohere


class Client(BaseCohere):
def __init__(
self,
Expand All @@ -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,
Expand Down

0 comments on commit f2f1cc0

Please sign in to comment.