Metadata-Version: 2.3
Name: flowai-sdk
Version: 0.1.7
Summary: Python Client SDK Generated by Speakeasy.
Author: Speakeasy
Requires-Python: >=3.9.2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: httpx (>=0.28.1)
Requires-Dist: pydantic (>=2.11.2)
Project-URL: Repository, https://github.com/flowaicom/flowai-sdk-python.git
Description-Content-Type: text/markdown

# flow-ai-sdk

Developer-friendly & type-safe Python SDK specifically catered to leverage *flow-ai-sdk* API.

<div align="left">
    <a href="https://www.speakeasy.com/?utm_source=flow-ai-sdk&utm_campaign=python"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
    <a href="https://opensource.org/licenses/MIT">
        <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
    </a>
</div>


<br /><br />
> [!IMPORTANT]
> This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your [workspace](https://app.speakeasy.com/org/flow-ai/main). Delete this section before > publishing to a package manager.

<!-- Start Summary [summary] -->
## Summary

server: FastAPI backend for Flow Expert
<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents
<!-- $toc-max-depth=2 -->
* [flow-ai-sdk](https://github.com/flowaicom/flowai-sdk-python/blob/master/#flow-ai-sdk)
  * [SDK Installation](https://github.com/flowaicom/flowai-sdk-python/blob/master/#sdk-installation)
  * [IDE Support](https://github.com/flowaicom/flowai-sdk-python/blob/master/#ide-support)
  * [SDK Example Usage](https://github.com/flowaicom/flowai-sdk-python/blob/master/#sdk-example-usage)
  * [Available Resources and Operations](https://github.com/flowaicom/flowai-sdk-python/blob/master/#available-resources-and-operations)
  * [Retries](https://github.com/flowaicom/flowai-sdk-python/blob/master/#retries)
  * [Error Handling](https://github.com/flowaicom/flowai-sdk-python/blob/master/#error-handling)
  * [Server Selection](https://github.com/flowaicom/flowai-sdk-python/blob/master/#server-selection)
  * [Custom HTTP Client](https://github.com/flowaicom/flowai-sdk-python/blob/master/#custom-http-client)
  * [Resource Management](https://github.com/flowaicom/flowai-sdk-python/blob/master/#resource-management)
  * [Debugging](https://github.com/flowaicom/flowai-sdk-python/blob/master/#debugging)
* [Development](https://github.com/flowaicom/flowai-sdk-python/blob/master/#development)
  * [Maturity](https://github.com/flowaicom/flowai-sdk-python/blob/master/#maturity)
  * [Contributions](https://github.com/flowaicom/flowai-sdk-python/blob/master/#contributions)

<!-- End Table of Contents [toc] -->

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

> [!NOTE]
> **Python version upgrade policy**
>
> Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated.

The SDK can be installed with either *pip* or *poetry* package managers.

### PIP

*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.

```bash
pip install flowai-sdk
```

### Poetry

*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.

```bash
poetry add flowai-sdk
```

### Shell and script usage with `uv`

You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so:

```shell
uvx --from flowai-sdk python
```

It's also possible to write a standalone Python script without needing to set up a whole project like so:

```python
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.9"
# dependencies = [
#     "flowai-sdk",
# ]
# ///

from flowai_sdk import FlowAI

sdk = FlowAI(
  # SDK arguments
)

# Rest of script here...
```

Once that is saved to a file, you can run it with `uv run script.py` where
`script.py` can be replaced with the actual file name.
<!-- End SDK Installation [installation] -->

<!-- Start IDE Support [idesupport] -->
## IDE Support

### PyCharm

Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.

- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
<!-- End IDE Support [idesupport] -->

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

### Example

```python
# Synchronous Example
from flowai_sdk import FlowAI


with FlowAI() as flow_ai:

    res = flow_ai.clerk_webhooks.handle()

    # Handle response
    print(res)
```

</br>

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

async def main():

    async with FlowAI() as flow_ai:

        res = await flow_ai.clerk_webhooks.handle_async()

        # Handle response
        print(res)

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

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

<details open>
<summary>Available methods</summary>

### [api_keys](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/apikeys/README.md)

* [list](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/apikeys/README.md#list) - List API Keys for the authenticated user
* [create](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/apikeys/README.md#create) - Generate a new API Key for the authenticated user
* [update](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/apikeys/README.md#update) - Update an API Key
* [revoke](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/apikeys/README.md#revoke) - Revoke an API Key

### [authentication](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/authentication/README.md)

* [sdk_login](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/authentication/README.md#sdk_login) - Sdk Login
* [complete_validator_signup](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/authentication/README.md#complete_validator_signup) - Complete Validator Signup
* [verify_validator_access](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/authentication/README.md#verify_validator_access) - Verify Validator Access

### [batches](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md)

* [list_mine](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#list_mine) - List My Batches
* [get](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#get) - Get Batch By Id
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#delete) - Delete Batch By Id
* [get_test_cases](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#get_test_cases) - Get Batch Test Cases
* [get_validations](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#get_validations) - Get Validations For Batch
* [create_validation_task](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#create_validation_task) - Create Validation Task For Batch Endpoint
* [get_validation_task](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#get_validation_task) - Get Validation Task For Batch Endpoint
* [get_status](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/batches/README.md#get_status) - Get Batch Status Endpoint

### [clerk_webhooks](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/clerkwebhooks/README.md)

* [handle](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/clerkwebhooks/README.md#handle) - Handle Clerk Webhook Events

### [datasets](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/datasets/README.md)

* [get_items](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/datasets/README.md#get_items) - Get Dataset Items
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/datasets/README.md#delete) - Delete Dataset


### [integrations](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/integrations/README.md)

* [handle_prefect_webhook](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/integrations/README.md#handle_prefect_webhook) - Prefect Webhook

### [jobs](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md)

* [get_details](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#get_details) - Get Job Details
* [cancel](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#cancel) - Cancel Job
* [generate_batch](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#generate_batch) - Generate Batch for Job
* [list_batches](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#list_batches) - List Batches for a Job
* [generate_dataset](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#generate_dataset) - Generate Dataset for Job
* [trigger_pipeline](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/jobs/README.md#trigger_pipeline) - Trigger Pipeline From Stages

### [projects](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md)

* [list](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#list) - List Projects
* [create](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#create) - Create Project
* [get](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#get) - Get Project
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#delete) - Delete Project
* [update](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#update) - Update Project
* [archive](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#archive) - Archive Project
* [get_dataset](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#get_dataset) - Get Project Dataset
* [list_validators](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#list_validators) - List Project Validators
* [add_validator](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#add_validator) - Add Project Validator
* [remove_validator](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#remove_validator) - Remove Project Validator
* [list_jobs](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#list_jobs) - List Jobs for Project
* [create_job](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/projects/README.md#create_job) - Create Job for Project

### [root](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/root/README.md)

* [get](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/root/README.md#get) - Root

### [stages](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md)

* [ping](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#ping) - Ping Stages
* [list](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#list) - List Stages
* [create](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#create) - Create Stages For Project
* [get_details](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#get_details) - Get Stage Details
* [update](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#update) - Update Stage
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/stages/README.md#delete) - Delete Stage

### [test_cases](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md)

* [list](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#list) - List Test Cases
* [create](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#create) - Create Test Case
* [get](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#get) - Get Test Case
* [update](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#update) - Update Test Case
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#delete) - Delete Test Case
* [get_validation](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/testcases/README.md#get_validation) - Get Single Validation From Batch

### [users](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/users/README.md)

* [get_me](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/users/README.md#get_me) - Read Users Me
* [update_me](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/users/README.md#update_me) - Update User Me
* [update_role](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/users/README.md#update_role) - Update User Role
* [get_basic_info](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/users/README.md#get_basic_info) - Get Current User Basic Info

### [validation_tasks](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validationtasks/README.md)

* [get_status](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validationtasks/README.md#get_status) - Check Validation Task Status

### [validations](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md)

* [list](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md#list) - List Validations
* [create](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md#create) - Create Test Case Validation
* [get](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md#get) - Get Validation
* [update](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md#update) - Update Test Case Validation
* [delete](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validations/README.md#delete) - Delete Validation

### [validator_tasks](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validatortasks/README.md)

* [submit_validation](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validatortasks/README.md#submit_validation) - Submit Test Case Validation
* [load_test_cases](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validatortasks/README.md#load_test_cases) - Load Test Cases For Validator
* [update_validation](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validatortasks/README.md#update_validation) - Edit Test Case Validation
* [submit_validator_task](https://github.com/flowaicom/flowai-sdk-python/blob/master/docs/sdks/validatortasks/README.md#submit_validator_task) - Submit Validator Task

</details>
<!-- End Available Resources and Operations [operations] -->

<!-- Start Retries [retries] -->
## Retries

Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.

To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
```python
from flowai_sdk import FlowAI
from flowai_sdk.utils import BackoffStrategy, RetryConfig


with FlowAI() as flow_ai:

    res = flow_ai.clerk_webhooks.handle(,
        RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))

    # Handle response
    print(res)

```

If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
```python
from flowai_sdk import FlowAI
from flowai_sdk.utils import BackoffStrategy, RetryConfig


with FlowAI(
    retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
) as flow_ai:

    res = flow_ai.clerk_webhooks.handle()

    # Handle response
    print(res)

```
<!-- End Retries [retries] -->

<!-- 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 exception.

By default, an API error will raise a errors.APIError exception, which has the following properties:

| Property        | Type             | Description           |
|-----------------|------------------|-----------------------|
| `.status_code`  | *int*            | The HTTP status code  |
| `.message`      | *str*            | The error message     |
| `.raw_response` | *httpx.Response* | The raw HTTP response |
| `.body`         | *str*            | The response content  |

When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `handle_async` method may raise the following exceptions:

| Error Type                 | Status Code | Content Type     |
| -------------------------- | ----------- | ---------------- |
| errors.HTTPValidationError | 422         | application/json |
| errors.APIError            | 4XX, 5XX    | \*/\*            |

### Example

```python
from flowai_sdk import FlowAI, errors


with FlowAI() as flow_ai:
    res = None
    try:

        res = flow_ai.clerk_webhooks.handle()

        # Handle response
        print(res)

    except errors.HTTPValidationError as e:
        # handle e.data: errors.HTTPValidationErrorData
        raise(e)
    except errors.APIError as e:
        # handle exception
        raise(e)
```
<!-- End Error Handling [errors] -->

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

### Override Server URL Per-Client

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


with FlowAI(
    server_url="http://localhost:8000",
) as flow_ai:

    res = flow_ai.clerk_webhooks.handle()

    # Handle response
    print(res)

```
<!-- 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 flowai_sdk import FlowAI
import httpx

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

or you could wrap the client with your own custom logic:
```python
from flowai_sdk import FlowAI
from flowai_sdk.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 = FlowAI(async_client=CustomClient(httpx.AsyncClient()))
```
<!-- End Custom HTTP Client [http-client] -->

<!-- Start Resource Management [resource-management] -->
## Resource Management

The `FlowAI` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.

[context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers

```python
from flowai_sdk import FlowAI
def main():

    with FlowAI() as flow_ai:
        # Rest of application here...


# Or when using async:
async def amain():

    async with FlowAI() as flow_ai:
        # Rest of application here...
```
<!-- End Resource Management [resource-management] -->

<!-- Start Debugging [debug] -->
## Debugging

You can setup your SDK to emit debug logs for SDK requests and responses.

You can pass your own logger class directly into your SDK.
```python
from flowai_sdk import FlowAI
import logging

logging.basicConfig(level=logging.DEBUG)
s = FlowAI(debug_logger=logging.getLogger("flowai_sdk"))
```

You can also enable a default debug logger by setting an environment variable `FLOWAI_DEBUG` to true.
<!-- End Debugging [debug] -->

<!-- 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. Any manual changes added to internal files will be overwritten on the next generation. 
We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release. 

### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=flow-ai-sdk&utm_campaign=python)

