You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
You can override the default server globally by passing a server name to the `server: str` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the names associated with the available servers:
492
492
493
-
| Name | Server| Variables |
494
-
| ------|------------------------ | --------- |
495
-
|`prod`|`https://api.mistral.ai`| None |
493
+
| Name | Server | Variables |
494
+
| ----- | ------ | --------- |
495
+
|`prod`|`https://api.mistral.ai`| None |
496
496
497
497
#### Example
498
498
@@ -625,9 +625,9 @@ s = Mistral(async_client=CustomClient(httpx.AsyncClient()))
625
625
626
626
This SDK supports the following security scheme globally:
0 commit comments