Skip to main content

ONDEWO Text 2 Speech (T2S) Client library for Python

Project description

Ondewo T2S Client Python Library

This library facilitates the interaction between a user and a CAI server. It achieves this by providing a higher-level interface mediator.

This higher-level interface mediator is structured around a series of python files generated from protobuf files. These protobuf files specify the details of the interface, and can be used to generate code in 10+ high-level languages. They are found in the ONDEWO T2S API along with the older Google protobufs from Dialogueflow that were used at the start. The ONDEWO PROTO-COMPILER will generate the needed files directly in this library.

Python Installation

You can install the library by installing it directly from the PyPi:

pip install ondewo-t2s-client

Or, you could clone it and install the requirements:

git clone git@github.com:ondewo/ondewo-t2s-client-python.git
cd ondewo-t2s-client-python
make setup_developer_environment_locally

Repository Structure

.
├── examples
│   ├── configs
│   │   ├── insecure_grpc.json
│   │   └── secure_grpc_placeholder.json
│   ├── example_api.py
│   ├── __init__.py
│   ├── ondewo_t2s_with_certificate.ipynb
│   └── requirements.txt
├── ondewo
│   ├── t2s
│   │   ├── client
│   │   │   ├── services
│   │   │   │   ├── __init__.py
│   │   │   │   ├── async_text_to_speech.py
│   │   │   │   └── text_to_speech.py
│   │   │   ├── async_client.py
│   │   │   ├── async_services_container.py
│   │   │   ├── client_config.py
│   │   │   ├── client.py
│   │   │   ├── __init__.py
│   │   │   └── services_container.py
│   │   ├── scripts
│   │   │   └── generate_services.py
│   │   ├── __init__.py
│   │   ├── text_to_speech_pb2_grpc.py
│   │   ├── text_to_speech_pb2.py
│   │   └── text_to_speech_pb2.pyi
│   └── __init__.py
├── tests
│   ├── e2e
│   │   ├── __init__.py
│   │   └── test_synthesize_request.py
│   ├── unit
│   │   ├── __init__.py
│   │   ├── test_async_client.py
│   │   └── test_client.py
│   ├── __init__.py
│   └── conftest.py
├── ondewo-proto-compiler
├── ondewo-t2s-api
├── CONTRIBUTING.md
├── Dockerfile.utils
├── LICENSE
├── Makefile
├── MANIFEST.in
├── mypy.ini
├── README.md
├── RELEASE.md
├── requirements-dev.txt
├── requirements.txt
├── setup.cfg
└── setup.py

Build

The make build command is dependent on 2 repositories and their speciefied version:

It will generate a _pb2.py, _pb2.pyi and _pb2_grpc.py file for every .proto in the api submodule.

:warning: All Files in the ondewo folder that dont have pb2 in their name are handwritten, and therefor need to be manually adjusted to any changes in the proto-code.

Examples

The /examples folder provides a possible implementation of this library. To run an example, simple execute it like any other python file. To specify the server and credentials, you need to provide an environment file with the following variables:

  • host // The hostname of the Server - e.g. 127.0.0.1
  • port // Port of the Server - e.g. 6600
  • user_name // Username - same as you would use in AIM
  • password // Password of the user
  • grpc_cert // gRPC Certificate of the server

Keycloak bearer auth (D18)

The ONDEWO CCAI platform authenticates SDK calls with a Keycloak-issued JWT (D18). Configure the client with the Keycloak fields:

from ondewo.t2s.client.client import Client
from ondewo.t2s.client.client_config import ClientConfig
from ondewo.t2s.text_to_speech_pb2 import ListT2sPipelinesRequest

config = ClientConfig(
    host="127.0.0.1",
    port="50555",
    keycloak_url="https://keycloak.example.com/auth",
    realm="ondewo-ccai-platform",
    client_id="ondewo-nlu-cai-sdk-public",
    username="technical-user@ondewo.com",
    password="<password>",
)
client = Client(config=config, use_secure_channel=bool(config.grpc_cert))
response = client.services.text_to_speech.list_t2s_pipelines(ListT2sPipelinesRequest())

The SDK performs a headless Resource-Owner-Password-Credentials (ROPC) grant with scope=offline_access against the public Keycloak client (ondewo-nlu-cai-sdk-public - no client secret), auto-refreshes the short-lived access token in the background, and attaches it to every gRPC call as the Authorization: Bearer <jwt> header. When the client is built from a Keycloak config the generated convenience methods (client.services.text_to_speech.synthesize(...), list_t2s_pipelines(...), ...) attach the bearer token automatically; Envoy validates the bearer JWT (D5). See examples/synthesize_with_keycloak.py for a full working example.

Automatic Release Process

The entire process is automated to make development easier. The actual steps are simple:

TODO after Pull Request was merged in:

  • Checkout master:

    git checkout master
    
  • Pull the new stuff:

    git pull
    
  • (If not already, run the setup_developer_environment_locally command):

    make setup_developer_environment_locally
    
  • Update the ONDEWO_T2S_VERSION in the Makefile

  • Add the new Release Notes in RELEASE.md in the format:

    ## Release ONDEWO T2S Python Client X.X.X       <---- Beginning of Notes
    
       ...<NOTES>...
    
    *****************                      <---- End of Notes
    
  • Release:

    make ondewo_release
    

The release process can be divided into 6 Steps:

  1. build specified version of the ondewo-t2s-api
  2. commit and push all changes in code resulting from the build
  3. Create and push the release branch e.g. release/1.3.20
  4. Create and push the release tag e.g. 1.3.20
  5. Create a new Release on GitHub
  6. Publish the built dist folder to pypi.org

:warning: The Release Automation checks if the build has created all the proto-code files, but it does not check the code-integrity. Please build and test the generated code prior to starting the release process.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ondewo_t2s_client-6.6.0.tar.gz (56.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ondewo_t2s_client-6.6.0-py3-none-any.whl (62.6 kB view details)

Uploaded Python 3

File details

Details for the file ondewo_t2s_client-6.6.0.tar.gz.

File metadata

  • Download URL: ondewo_t2s_client-6.6.0.tar.gz
  • Upload date:
  • Size: 56.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for ondewo_t2s_client-6.6.0.tar.gz
Algorithm Hash digest
SHA256 964305769e62f650c15f09bca3548164eb8f98a6e17ad7a4351de5a2b292c27d
MD5 f6fd8ee31889c1b8ae1437bf67ff2729
BLAKE2b-256 753b0fbde4625d470df17ac98b498cb58d3afb17a6948315da550f8b210cc202

See more details on using hashes here.

File details

Details for the file ondewo_t2s_client-6.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ondewo_t2s_client-6.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ec066943330efdc2c57cb9437d048c41d8284f5ca2390bfabf5e4d661aae90b4
MD5 57654b61655515e288f0c53907b8a181
BLAKE2b-256 bf8f7a133c42af300d07637b1083d529b8a0f0c3d9cd2f3071473c3c4fdb7bce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page