We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52360b2 commit 7700cbbCopy full SHA for 7700cbb
src/cohere/client_v2.py
@@ -7,7 +7,7 @@
7
from concurrent.futures import ThreadPoolExecutor
8
9
10
-class ClientV2(V2Client, Client): # type: ignore
+class ClientV2(Client, V2Client): # type: ignore
11
def __init__(
12
self,
13
api_key: typing.Optional[typing.Union[str,
@@ -34,7 +34,7 @@ def __init__(
34
)
35
36
37
-class AsyncClientV2(AsyncV2Client, AsyncClient): # type: ignore
+class AsyncClientV2(AsyncClient, AsyncV2Client): # type: ignore
38
39
40
0 commit comments