Skip to main content

Arcelik Asista Smart Assistant AWS Lambda Python Library

Project description

Arcelik Asista Smart Assistant AWS Lambda Python Library

Simple Python API wrapper for Arcelik Asista Smart Assistant AWS Lambda handlers.


pyasista is an easy to use Python package to help developers implement their AWS lambda function with ease.

Installation

To install pyasista, simply use pip.

pip install pyasista

Usage

Just import pyasista into your project and use the wrapper classes for easily implementing your lambda functions.

from pyasista import AsistaInput
from pyasista import AsistaOutput
from pyasista import Command
from pyasista import CommandType


# Sample lambda handler to make Asista say `Hello, my name is Asista.`.
def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    asista_output = AsistaOutput()
    command = Command(CommandType.PLAY_ANNOUNCE, 'Hello, my name is Asista.')
    asista_output.push_command(command)
    return dict(asista_output)

Documentation

AsistaInput

Arcelik Asista Smart Assistant Lambda function has a standard event format. AsistaInput class is a wrapper for the lambda function input. Just use the event of the lambda function while initializing the object.

...

def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    ...

AsistaInput has the following properties:

  • environment: Environment (DEVELOPMENT, TESTING or PROD). [Required] (See: Environment)
  • language: Language of the Asista (TR, EN, AR). [Required] (See: Language)
  • customer_confirmed: True if the customer responded yes; False if the customer responded no; None if the customer has not responded to a Yes/No question.
  • ext_node_id: Node id of the detected NLP tree.
  • serial_number: Serial number of the physical Asista device.
  • slot_values: A dictionary of detected dynamic variables.
  • session: A dictionary of the session variables.
  • token: A helper object for holding OAuth2 token and refreshing the token. (See: AsistaToken)

All properties of AsistaInput are immutable.

...

def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    print(asista_input.serial_number)  # Print the serial number of the device
    asista_input.serial_number = 'QWERTY123'  # Raise an AttributeError

If your lambda strictly requires more of those parameters, you can pass them to the constructor and raise an error if the event lack any of those arguments.

By default, AsistaInput requires environment and language parameters.

...

def lambda_handler(event, context):
    # If serial_number and token keys are missing in the event, raise an error.
    asista_input = AsistaInput(event, required_parameters=['serial_number', 'token'])
    ...

AsistaOutput

A wrapper for Arcelik Asista Smart Assistant Lambda function standard output.

from pyasista import AsistaInput
from pyasista import AsistaOutput


def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    asista_output = AsistaOutput()
    return dict(asista_output)

Due to the non-serializable structure of AsistaOutput, lambda functions should return dict(asista_output). [Under revision]

AsistaOutput has the following methods:

  • push_command(command): Add a command for Asista to perform. (See: Command)
  • session(dict): A dictionary containing the session information. [default=dict()]
  • session_continue(bool): True if the session should continue; elseFalse. [default=False]

AsistaToken

For the applications requiring OAuth2 access token, Asista lambda input contains the access token and all the required information on refreshing them. You can access the token from the AsistaInput.

AsistaToken has the following property and methods:

  • access_token: The property holds the actual access token. It is an immutable variable, trying to set it will raise an AttributeError.
  • is_valid(): Checks whether the AsistaToken class structually valid. It is important to note that this method does not check whether the token itself is valid or not. It only checks whether the AsistaToken instance has access_token set and all the data present to refresh it.
  • refresh(): Refreshs the access token. Return True if the token is refreshed successfully, else False.

Example usage of the AsistaToken as follows:

from pyasista import AsistaInput
from pyasista import AsistaToken


def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    asista_token = asista_input.token  # The AsistaToken object

    if asista_token.,is_valid():  # Checks access_token is structually valid
        print(asista_token.access_token)  # Print the access_token
        if asista_token.refresh():  # Refresh the access_token
            print(asista_token.access_token)  # Print the new access_token
        else:
            print('Cannot refresh access token')  # Error in refresh
    else:
        print('Event does not have the token object')

    ...

Command

Arcelik Asista Smart Assistant is capable of converting a text to speech using a TTS engine and play it out loud, and playing an audio stream for the customer. AsistaOutput has an array of commands for Asista to perform. Command is a wrapper class for this purpose.

Basically initialize the class with type (See: CommandType) and the data (either the text to be spoken or the stream to be streamed) and add it to the output using AsistaOutput.push_command(command) method.

An example usage of Command is below:

from pyasista import AsistaOutput
from pyasista import Command
from pyasista import CommandType


def lambda_handler(event, context):
    # Parse event using AsistaInput
    # Implement your business logic
    ...
    asista_output = AsistaOutput()

    # Create a command to make Asista say 'Hello, my name is Asista.'
    command = Command(CommandType.PLAY_ANNOUNCE, 'Hello, my name is Asista.')
    asista_output.push_command(command)
    return dict(asista_output)

CommandType

An enumeration of supported command types that Asista can perform:

  • CommandType.PLAY_ANNOUNCE: Read a text out loud using TTS engine.
  • CommandType.PLAY_STREAM: Stream an audio from a URL.
  • CommandType.STOP: Stop Asista.
  • CommandType.NOACTION: Make Asista take no action at all.

Environment

An enumeration of supported environments that current event of the lambda function is executed.

Supported environments are:

  • Environment.DEVELOPMENT: Development environment.
  • Environment.TESTING: Test environment.
  • Environment.PROD: Production environment.

Accessing the environment is easy:

from pyasista import AsistaInput
from pyasista import Environment


def lambda_handler(event, context):
    asista_input = AsistaInput(event)
    environment = asista_input.environment
    if environment == Environment.DEVELOPMENT:
        # Do tasks for development
    elif environment == Environment.TESTING:
        # Do tasks for test
    elif environment == Environment.PROD:
        # Do tasks for production
    else:
        # Invalid, impossible to happen

Language

An enumeration of supported languages of the Asista. Currently Asista supports three languages:

  • Turkish (TR)
  • English (EN)
  • Arabic (AR)

As the sentence that Asista will say is completely controlled by the lambda function developer, it is essential to check which language is used and prepare sentence accordingly.

An example usage is as follows:

from pyasista import AsistaInput
from pyasista import AsistaOutput
from pyasista import Command
from pyasista import CommandType
from pyasista import Language


def lambda_handler(event, context):
    """Simple function replies with 'Hello, my name is Asista.' in the given language."""
    asista_input = AsistaInput(event)
    language = asista_input.language
    if language == Language.TURKISH:
        command = Command(CommandType.PLAY_ANNOUNCE, 'Merhaba, benim adım Asista.')
    elif language == Language.ENGLISH:
        command = Command(CommandType.PLAY_ANNOUNCE, 'Hello, my name is Asista.')
    elif language == Language.ARABIC:
        command = Command(CommandType.PLAY_ANNOUNCE, 'مرحبا اسمي Asista')
    else:
        # Invalid, impossible to happen

    # Create output and add the command
    asista_output = AsistaOutput()
    asista_output.push_command(command)
    return dict(asista_output)

EXAMPLES

Looking for more examples? Check out the examples folder.

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

pyasista-0.3.0.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

pyasista-0.3.0-py3-none-any.whl (9.7 kB view hashes)

Uploaded Python 3

Supported by

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