Skip to main content

Python SDK to interact with atlas

Project description

atlas-sdk

Python SDK for the atlas assistant!

Installation

PIP

pip install atlas-sdk

Source

git clone this repository and run python setup.py install.

If you're a developer, prefer the command python setup.py develop.

Usage

SkillClient

Used this class to defines a new skill that should respond to given intents. This client already take care of the skill discovery routine to make it available to atlas.

import logging
from atlas_sdk import SkillClient, Intent, Slot, Env, Request

def handle_echo(request):
  """Handle echo request.
  
  :type request: Request
  
  """

  date = request.slot('date') # Returns the value of the 'date' slot if set

  # The "date" variable will hold a single string or an array of strings if multiple values are found for the same slot.
  # This is very usefull if you want to handle cases where the user can enter many values such as "rooms" when turning lights on.

  if not date:
    # Ask for user input. Once done, this handler would be called again
    # If you pass a list as a second argument, a random element will be choose as the text, this make it
    # easy for your skill to propose some variants
    return request.ask('date', _('You should provide a date?!'))

  # Show something in the channel from which this request has been started
  request.show(_('Hello from echo! Env was %s') % request.env('A_USELESS_PARAMETER'), terminate=True)

if __name__ == '__main__':
  logging.basicConfig(level=logging.DEBUG)

  echo_skill = SkillClient(
    name='Echo',
    description='Respond to echo intent',
    version='1.0.0',
    intents=[
      # Handle "echo" intent. When the NLU returns this intent, the agent will call this skill and our handler
      Intent('echo', handle_echo, slots=[Slot('date')]),
    ],
    env=[
      # This parameter will be retrieved and made available in the Request argument in your handlers. This parameter is available on a per user basis so each user can have its own set of parameters
      Env('A_USELESS_PARAMETER'),
    ],
  )

  echo_skill.run()

ChannelClient

Used this tiny client to create your own Channel to communicate with atlas. A channel can be anything you want such as a Slack bot, a web client, a CLI, a sound system which may handle user inputs issued as voice commands.

i18n

This SDK use the standard python package to localize skills. A traditional workflow is as follow:

  • Use _('Your message text') from your own code.
  • Run xgettext your_script.py -o messages.pot to generates a translation model
  • Copy the .pot file into a .po file representing your translation in the skill directory under locale/<lang>/LC_MESSAGES
  • Generates a binary translation file with the command msgfmt messages.po

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

atlas_sdk-1.1.7.tar.gz (9.3 kB view details)

Uploaded Source

File details

Details for the file atlas_sdk-1.1.7.tar.gz.

File metadata

  • Download URL: atlas_sdk-1.1.7.tar.gz
  • Upload date:
  • Size: 9.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for atlas_sdk-1.1.7.tar.gz
Algorithm Hash digest
SHA256 979418f38f09bf05f46c6b69c838b6466963f44536b2c5f1864d5dc79304d75e
MD5 d8741c67bc97476dd5b5996d1e84ab83
BLAKE2b-256 bc9221458b6f63c8dc990ba918a6900e71f43e6b0e4b5a6945ab7debe0b6b1f1

See more details on using hashes here.

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