mistral-dev


Namemistral-dev JSON
Version 0.5.4a0 PyPI version JSON
download
home_pagehttps://github.com/speakeasy-sdks/mistral-python-sdk.git
SummaryPython Client SDK for the Mistral AI API.
upload_time2024-07-02 13:46:04
maintainerNone
docs_urlNone
authorMistral
requires_python<4.0,>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
        <img src="https://github.com/speakeasy-sdks/mistral-ts-sdk/assets/68016351/c75a6944-06c6-488b-82a3-789a8bda5269" width="500">
   <p>Open and portable generative AI for devs and businesses</p>
   <a href="https://docs.mistral.ai/api/"><img src="https://img.shields.io/static/v1?label=Docs&message=API Ref&color=000000&style=for-the-badge" /></a>
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge" /></a>
</div>

The Mistral Python library provides convenient access to the Mistral REST API from any Python 3.7+ application. The library includes type definitions for all request params and response fields, and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).

> [!WARNING]  
> This SDK is not yet ready for production use and has not been published to a package manager.

<!-- Start SDK Installation [installation] -->
## SDK Installation

PIP
```bash
pip install mistral-dev
```

Poetry
```bash
poetry add mistral-dev
```
<!-- End SDK Installation [installation] -->

<!-- Start SDK Example Usage [usage] -->
## SDK Example Usage

### Create Chat Completions

This example shows how to create chat completions.

```python
# Synchronous Example
import mistral_dev
from mistral_dev import Mistral

s = Mistral(
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

if res is not None:
    for event in res:
        # handle event
        print(event)
```

</br>

The same SDK client can also be used to make asychronous requests by importing asyncio.
```python
# Asynchronous Example
import asyncio
import mistral_dev
from mistral_dev import Mistral

async def main():
    s = Mistral(
        api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
    )
    res = await s.chat.stream_async(request={
        "model": "mistral-small-latest",
        "messages": [
            {
                "role": mistral_dev.ChatCompletionRole.USER,
                "content": "Who is the best French painter? Answer in JSON.",
            },
        ],
        "response_format": {
            "type": "json_object",
        },
        "max_tokens": 512,
        "random_seed": 1337,
    })
    if res is not None:
        for event in res:
            # handle event
            print(event)

asyncio.run(main())
```
<!-- End SDK Example Usage [usage] -->

<!-- Start Available Resources and Operations [operations] -->
## Available Resources and Operations

### [chat](docs/sdks/chat/README.md)

* [stream](docs/sdks/chat/README.md#stream) - Create Chat Completions Stream
* [create](docs/sdks/chat/README.md#create) - Create Chat Completions

### [fim](docs/sdks/fim/README.md)

* [create](docs/sdks/fim/README.md#create) - Create FIM Completions

### [embeddings](docs/sdks/embeddings/README.md)

* [create](docs/sdks/embeddings/README.md#create) - Create Embeddings

### [models](docs/sdks/models/README.md)

* [list](docs/sdks/models/README.md#list) - List Available Models

### [files](docs/sdks/files/README.md)

* [upload](docs/sdks/files/README.md#upload) - Upload File
* [list](docs/sdks/files/README.md#list) - List Files
* [retrieve](docs/sdks/files/README.md#retrieve) - Retrieve File
* [delete](docs/sdks/files/README.md#delete) - Delete File

### [fine_tuning](docs/sdks/finetuning/README.md)

* [list_jobs](docs/sdks/finetuning/README.md#list_jobs) - List Fine Tuning Jobs
* [create_job](docs/sdks/finetuning/README.md#create_job) - Create Fine Tuning Job
* [get_job](docs/sdks/finetuning/README.md#get_job) - Get Fine Tuning Job
* [cancel_job](docs/sdks/finetuning/README.md#cancel_job) - Cancel Fine Tuning Job
<!-- End Available Resources and Operations [operations] -->

<!-- Start Server-sent event streaming [eventstream] -->
## Server-sent event streaming

[Server-sent events][mdn-sse] are used to stream content from certain
operations. These operations will expose the stream as [Generator][generator] that
can be consumed using a simple `for` loop. The loop will
terminate when the server no longer has any events to send and closes the
underlying connection.

```python
import mistral_dev
from mistral_dev import Mistral

s = Mistral(
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

if res is not None:
    for event in res:
        # handle event
        print(event)

```

[mdn-sse]: https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events
[generator]: https://wiki.python.org/moin/Generators
<!-- End Server-sent event streaming [eventstream] -->

<!-- Start File uploads [file-upload] -->
## File uploads

Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.

> [!TIP]
>
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
>

```python
from mistral_dev import Mistral

s = Mistral(
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.files.upload(purpose="fine-tune", file={
    "file_name": "your_file_here",
    "content": open("<file_path>", "rb"),
})

if res is not None:
    # handle response
    pass

```
<!-- End File uploads [file-upload] -->

<!-- Start Error Handling [errors] -->
## Error Handling

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.

| Error Object               | Status Code                | Content Type               |
| -------------------------- | -------------------------- | -------------------------- |
| models.BadRequest          | 400                        | application/json           |
| models.Unauthorized        | 401                        | application/json           |
| models.Forbidden           | 403                        | application/json           |
| models.NotFound            | 404                        | application/json           |
| models.TooManyRequests     | 429                        | application/json           |
| models.InternalServerError | 500                        | application/json           |
| models.ServiceUnavailable  | 503                        | application/json           |
| models.SDKError            | 4xx-5xx                    | */*                        |

### Example

```python
import mistral_dev
from mistral_dev import Mistral, models

s = Mistral(
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)

res = None
try:
    res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

except models.BadRequest as e:
    # handle exception
    raise(e)
except models.Unauthorized as e:
    # handle exception
    raise(e)
except models.Forbidden as e:
    # handle exception
    raise(e)
except models.NotFound as e:
    # handle exception
    raise(e)
except models.TooManyRequests as e:
    # handle exception
    raise(e)
except models.InternalServerError as e:
    # handle exception
    raise(e)
except models.ServiceUnavailable as e:
    # handle exception
    raise(e)
except models.SDKError as e:
    # handle exception
    raise(e)

if res is not None:
    for event in res:
        # handle event
        print(event)

```
<!-- End Error Handling [errors] -->

<!-- Start Server Selection [server] -->
## Server Selection

### Select Server by Name

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:

| Name | Server | Variables |
| ----- | ------ | --------- |
| `prod` | `https://api.mistral.ai/v1` | None |

#### Example

```python
import mistral_dev
from mistral_dev import Mistral

s = Mistral(
    server="prod",
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

if res is not None:
    for event in res:
        # handle event
        print(event)

```


### Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
```python
import mistral_dev
from mistral_dev import Mistral

s = Mistral(
    server_url="https://api.mistral.ai/v1",
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

if res is not None:
    for event in res:
        # handle event
        print(event)

```
<!-- End Server Selection [server] -->

<!-- Start Custom HTTP Client [http-client] -->
## Custom HTTP Client

The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.

For example, you could specify a header for every request that this sdk makes as follows:
```python
from mistral_dev import Mistral
import httpx

http_client = httpx.Client(headers={"x-custom-header": "someValue"})
s = Mistral(client=http_client)
```

or you could wrap the client with your own custom logic:
```python
from mistral_dev import Mistral
from mistral_dev.httpclient import AsyncHttpClient
import httpx

class CustomClient(AsyncHttpClient):
    client: AsyncHttpClient

    def __init__(self, client: AsyncHttpClient):
        self.client = client

    async def send(
        self,
        request: httpx.Request,
        *,
        stream: bool = False,
        auth: Union[
            httpx._types.AuthTypes, httpx._client.UseClientDefault, None
        ] = httpx.USE_CLIENT_DEFAULT,
        follow_redirects: Union[
            bool, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
    ) -> httpx.Response:
        request.headers["Client-Level-Header"] = "added by client"

        return await self.client.send(
            request, stream=stream, auth=auth, follow_redirects=follow_redirects
        )

    def build_request(
        self,
        method: str,
        url: httpx._types.URLTypes,
        *,
        content: Optional[httpx._types.RequestContent] = None,
        data: Optional[httpx._types.RequestData] = None,
        files: Optional[httpx._types.RequestFiles] = None,
        json: Optional[Any] = None,
        params: Optional[httpx._types.QueryParamTypes] = None,
        headers: Optional[httpx._types.HeaderTypes] = None,
        cookies: Optional[httpx._types.CookieTypes] = None,
        timeout: Union[
            httpx._types.TimeoutTypes, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
        extensions: Optional[httpx._types.RequestExtensions] = None,
    ) -> httpx.Request:
        return self.client.build_request(
            method,
            url,
            content=content,
            data=data,
            files=files,
            json=json,
            params=params,
            headers=headers,
            cookies=cookies,
            timeout=timeout,
            extensions=extensions,
        )

s = Mistral(async_client=CustomClient(httpx.AsyncClient()))
```
<!-- End Custom HTTP Client [http-client] -->

<!-- Start Authentication [security] -->
## Authentication

### Per-Client Security Schemes

This SDK supports the following security scheme globally:

| Name           | Type           | Scheme         |
| -------------- | -------------- | -------------- |
| `api_key_auth` | http           | HTTP Bearer    |

To authenticate with the API the `api_key_auth` parameter must be set when initializing the SDK client instance. For example:
```python
import mistral_dev
from mistral_dev import Mistral

s = Mistral(
    api_key_auth="<YOUR_BEARER_TOKEN_HERE>",
)


res = s.chat.stream(request={
    "model": "mistral-small-latest",
    "messages": [
        {
            "role": mistral_dev.ChatCompletionRole.USER,
            "content": "Who is the best French painter? Answer in JSON.",
        },
    ],
    "response_format": {
        "type": "json_object",
    },
    "max_tokens": 512,
    "random_seed": 1337,
})

if res is not None:
    for event in res:
        # handle event
        print(event)

```
<!-- End Authentication [security] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->

# Development

## Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

## Contributions

While we value open-source contributions to this SDK, this library is generated programmatically.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/speakeasy-sdks/mistral-python-sdk.git",
    "name": "mistral-dev",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Mistral",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/3e/f6/60f9aa4a75a83329c0d5dd908d53cd6607882b53103b77aa4636f8ad3eae/mistral_dev-0.5.4a0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n        <img src=\"https://github.com/speakeasy-sdks/mistral-ts-sdk/assets/68016351/c75a6944-06c6-488b-82a3-789a8bda5269\" width=\"500\">\n   <p>Open and portable generative AI for devs and businesses</p>\n   <a href=\"https://docs.mistral.ai/api/\"><img src=\"https://img.shields.io/static/v1?label=Docs&message=API Ref&color=000000&style=for-the-badge\" /></a>\n  <a href=\"https://opensource.org/licenses/MIT\"><img src=\"https://img.shields.io/badge/License-MIT-blue.svg?style=for-the-badge\" /></a>\n</div>\n\nThe Mistral Python library provides convenient access to the Mistral REST API from any Python 3.7+ application. The library includes type definitions for all request params and response fields, and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).\n\n> [!WARNING]  \n> This SDK is not yet ready for production use and has not been published to a package manager.\n\n<!-- Start SDK Installation [installation] -->\n## SDK Installation\n\nPIP\n```bash\npip install mistral-dev\n```\n\nPoetry\n```bash\npoetry add mistral-dev\n```\n<!-- End SDK Installation [installation] -->\n\n<!-- Start SDK Example Usage [usage] -->\n## SDK Example Usage\n\n### Create Chat Completions\n\nThis example shows how to create chat completions.\n\n```python\n# Synchronous Example\nimport mistral_dev\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n```\n\n</br>\n\nThe same SDK client can also be used to make asychronous requests by importing asyncio.\n```python\n# Asynchronous Example\nimport asyncio\nimport mistral_dev\nfrom mistral_dev import Mistral\n\nasync def main():\n    s = Mistral(\n        api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n    )\n    res = await s.chat.stream_async(request={\n        \"model\": \"mistral-small-latest\",\n        \"messages\": [\n            {\n                \"role\": mistral_dev.ChatCompletionRole.USER,\n                \"content\": \"Who is the best French painter? Answer in JSON.\",\n            },\n        ],\n        \"response_format\": {\n            \"type\": \"json_object\",\n        },\n        \"max_tokens\": 512,\n        \"random_seed\": 1337,\n    })\n    if res is not None:\n        for event in res:\n            # handle event\n            print(event)\n\nasyncio.run(main())\n```\n<!-- End SDK Example Usage [usage] -->\n\n<!-- Start Available Resources and Operations [operations] -->\n## Available Resources and Operations\n\n### [chat](docs/sdks/chat/README.md)\n\n* [stream](docs/sdks/chat/README.md#stream) - Create Chat Completions Stream\n* [create](docs/sdks/chat/README.md#create) - Create Chat Completions\n\n### [fim](docs/sdks/fim/README.md)\n\n* [create](docs/sdks/fim/README.md#create) - Create FIM Completions\n\n### [embeddings](docs/sdks/embeddings/README.md)\n\n* [create](docs/sdks/embeddings/README.md#create) - Create Embeddings\n\n### [models](docs/sdks/models/README.md)\n\n* [list](docs/sdks/models/README.md#list) - List Available Models\n\n### [files](docs/sdks/files/README.md)\n\n* [upload](docs/sdks/files/README.md#upload) - Upload File\n* [list](docs/sdks/files/README.md#list) - List Files\n* [retrieve](docs/sdks/files/README.md#retrieve) - Retrieve File\n* [delete](docs/sdks/files/README.md#delete) - Delete File\n\n### [fine_tuning](docs/sdks/finetuning/README.md)\n\n* [list_jobs](docs/sdks/finetuning/README.md#list_jobs) - List Fine Tuning Jobs\n* [create_job](docs/sdks/finetuning/README.md#create_job) - Create Fine Tuning Job\n* [get_job](docs/sdks/finetuning/README.md#get_job) - Get Fine Tuning Job\n* [cancel_job](docs/sdks/finetuning/README.md#cancel_job) - Cancel Fine Tuning Job\n<!-- End Available Resources and Operations [operations] -->\n\n<!-- Start Server-sent event streaming [eventstream] -->\n## Server-sent event streaming\n\n[Server-sent events][mdn-sse] are used to stream content from certain\noperations. These operations will expose the stream as [Generator][generator] that\ncan be consumed using a simple `for` loop. The loop will\nterminate when the server no longer has any events to send and closes the\nunderlying connection.\n\n```python\nimport mistral_dev\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n\n```\n\n[mdn-sse]: https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events\n[generator]: https://wiki.python.org/moin/Generators\n<!-- End Server-sent event streaming [eventstream] -->\n\n<!-- Start File uploads [file-upload] -->\n## File uploads\n\nCertain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.\n\n> [!TIP]\n>\n> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.\n>\n\n```python\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.files.upload(purpose=\"fine-tune\", file={\n    \"file_name\": \"your_file_here\",\n    \"content\": open(\"<file_path>\", \"rb\"),\n})\n\nif res is not None:\n    # handle response\n    pass\n\n```\n<!-- End File uploads [file-upload] -->\n\n<!-- Start Error Handling [errors] -->\n## Error Handling\n\nHandling 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.\n\n| Error Object               | Status Code                | Content Type               |\n| -------------------------- | -------------------------- | -------------------------- |\n| models.BadRequest          | 400                        | application/json           |\n| models.Unauthorized        | 401                        | application/json           |\n| models.Forbidden           | 403                        | application/json           |\n| models.NotFound            | 404                        | application/json           |\n| models.TooManyRequests     | 429                        | application/json           |\n| models.InternalServerError | 500                        | application/json           |\n| models.ServiceUnavailable  | 503                        | application/json           |\n| models.SDKError            | 4xx-5xx                    | */*                        |\n\n### Example\n\n```python\nimport mistral_dev\nfrom mistral_dev import Mistral, models\n\ns = Mistral(\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\nres = None\ntry:\n    res = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nexcept models.BadRequest as e:\n    # handle exception\n    raise(e)\nexcept models.Unauthorized as e:\n    # handle exception\n    raise(e)\nexcept models.Forbidden as e:\n    # handle exception\n    raise(e)\nexcept models.NotFound as e:\n    # handle exception\n    raise(e)\nexcept models.TooManyRequests as e:\n    # handle exception\n    raise(e)\nexcept models.InternalServerError as e:\n    # handle exception\n    raise(e)\nexcept models.ServiceUnavailable as e:\n    # handle exception\n    raise(e)\nexcept models.SDKError as e:\n    # handle exception\n    raise(e)\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n\n```\n<!-- End Error Handling [errors] -->\n\n<!-- Start Server Selection [server] -->\n## Server Selection\n\n### Select Server by Name\n\nYou 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:\n\n| Name | Server | Variables |\n| ----- | ------ | --------- |\n| `prod` | `https://api.mistral.ai/v1` | None |\n\n#### Example\n\n```python\nimport mistral_dev\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    server=\"prod\",\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n\n```\n\n\n### Override Server URL Per-Client\n\nThe default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:\n```python\nimport mistral_dev\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    server_url=\"https://api.mistral.ai/v1\",\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n\n```\n<!-- End Server Selection [server] -->\n\n<!-- Start Custom HTTP Client [http-client] -->\n## Custom HTTP Client\n\nThe Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.\nDepending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.\nThis allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.\n\nFor example, you could specify a header for every request that this sdk makes as follows:\n```python\nfrom mistral_dev import Mistral\nimport httpx\n\nhttp_client = httpx.Client(headers={\"x-custom-header\": \"someValue\"})\ns = Mistral(client=http_client)\n```\n\nor you could wrap the client with your own custom logic:\n```python\nfrom mistral_dev import Mistral\nfrom mistral_dev.httpclient import AsyncHttpClient\nimport httpx\n\nclass CustomClient(AsyncHttpClient):\n    client: AsyncHttpClient\n\n    def __init__(self, client: AsyncHttpClient):\n        self.client = client\n\n    async def send(\n        self,\n        request: httpx.Request,\n        *,\n        stream: bool = False,\n        auth: Union[\n            httpx._types.AuthTypes, httpx._client.UseClientDefault, None\n        ] = httpx.USE_CLIENT_DEFAULT,\n        follow_redirects: Union[\n            bool, httpx._client.UseClientDefault\n        ] = httpx.USE_CLIENT_DEFAULT,\n    ) -> httpx.Response:\n        request.headers[\"Client-Level-Header\"] = \"added by client\"\n\n        return await self.client.send(\n            request, stream=stream, auth=auth, follow_redirects=follow_redirects\n        )\n\n    def build_request(\n        self,\n        method: str,\n        url: httpx._types.URLTypes,\n        *,\n        content: Optional[httpx._types.RequestContent] = None,\n        data: Optional[httpx._types.RequestData] = None,\n        files: Optional[httpx._types.RequestFiles] = None,\n        json: Optional[Any] = None,\n        params: Optional[httpx._types.QueryParamTypes] = None,\n        headers: Optional[httpx._types.HeaderTypes] = None,\n        cookies: Optional[httpx._types.CookieTypes] = None,\n        timeout: Union[\n            httpx._types.TimeoutTypes, httpx._client.UseClientDefault\n        ] = httpx.USE_CLIENT_DEFAULT,\n        extensions: Optional[httpx._types.RequestExtensions] = None,\n    ) -> httpx.Request:\n        return self.client.build_request(\n            method,\n            url,\n            content=content,\n            data=data,\n            files=files,\n            json=json,\n            params=params,\n            headers=headers,\n            cookies=cookies,\n            timeout=timeout,\n            extensions=extensions,\n        )\n\ns = Mistral(async_client=CustomClient(httpx.AsyncClient()))\n```\n<!-- End Custom HTTP Client [http-client] -->\n\n<!-- Start Authentication [security] -->\n## Authentication\n\n### Per-Client Security Schemes\n\nThis SDK supports the following security scheme globally:\n\n| Name           | Type           | Scheme         |\n| -------------- | -------------- | -------------- |\n| `api_key_auth` | http           | HTTP Bearer    |\n\nTo authenticate with the API the `api_key_auth` parameter must be set when initializing the SDK client instance. For example:\n```python\nimport mistral_dev\nfrom mistral_dev import Mistral\n\ns = Mistral(\n    api_key_auth=\"<YOUR_BEARER_TOKEN_HERE>\",\n)\n\n\nres = s.chat.stream(request={\n    \"model\": \"mistral-small-latest\",\n    \"messages\": [\n        {\n            \"role\": mistral_dev.ChatCompletionRole.USER,\n            \"content\": \"Who is the best French painter? Answer in JSON.\",\n        },\n    ],\n    \"response_format\": {\n        \"type\": \"json_object\",\n    },\n    \"max_tokens\": 512,\n    \"random_seed\": 1337,\n})\n\nif res is not None:\n    for event in res:\n        # handle event\n        print(event)\n\n```\n<!-- End Authentication [security] -->\n\n<!-- Placeholder for Future Speakeasy SDK Sections -->\n\n# Development\n\n## Maturity\n\nThis SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage\nto a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally\nlooking for the latest version.\n\n## Contributions\n\nWhile we value open-source contributions to this SDK, this library is generated programmatically.\nFeel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!\n\n### SDK Created by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python Client SDK for the Mistral AI API.",
    "version": "0.5.4a0",
    "project_urls": {
        "Homepage": "https://github.com/speakeasy-sdks/mistral-python-sdk.git",
        "Repository": "https://github.com/speakeasy-sdks/mistral-python-sdk.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f47217d7e2697b5faa7c139b59ec9ed79a097b7c14439b91f5aa9834bfd8264f",
                "md5": "96f39320804de5942dbef26bec93b708",
                "sha256": "4d81cd68fb4df2cf49ed0b1e4e07a7171528c2b4dd7afb0f32eafd082a7e92ec"
            },
            "downloads": -1,
            "filename": "mistral_dev-0.5.4a0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "96f39320804de5942dbef26bec93b708",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 80797,
            "upload_time": "2024-07-02T13:46:02",
            "upload_time_iso_8601": "2024-07-02T13:46:02.192912Z",
            "url": "https://files.pythonhosted.org/packages/f4/72/17d7e2697b5faa7c139b59ec9ed79a097b7c14439b91f5aa9834bfd8264f/mistral_dev-0.5.4a0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ef660f9aa4a75a83329c0d5dd908d53cd6607882b53103b77aa4636f8ad3eae",
                "md5": "b5fdbcc7186cbf2874d1160b34f33acc",
                "sha256": "1230b50377ae4c3b5e6688c8a9bf8898bedfa9ff776e07afaf198109869d2930"
            },
            "downloads": -1,
            "filename": "mistral_dev-0.5.4a0.tar.gz",
            "has_sig": false,
            "md5_digest": "b5fdbcc7186cbf2874d1160b34f33acc",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 43238,
            "upload_time": "2024-07-02T13:46:04",
            "upload_time_iso_8601": "2024-07-02T13:46:04.371287Z",
            "url": "https://files.pythonhosted.org/packages/3e/f6/60f9aa4a75a83329c0d5dd908d53cd6607882b53103b77aa4636f8ad3eae/mistral_dev-0.5.4a0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-02 13:46:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "speakeasy-sdks",
    "github_project": "mistral-python-sdk",
    "github_not_found": true,
    "lcname": "mistral-dev"
}
        
Elapsed time: 1.07159s