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.4.tar.gz (8.9 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for atlas_sdk-1.1.4.tar.gz
Algorithm Hash digest
SHA256 619e889d4a1e5cedaab19ef8423688ef304b4d1b980be26b6b2d06a143dd7f4e
MD5 63137f4dc43ddf7a2652f0357a160d5c
BLAKE2b-256 2a961aeb076924e05bfd8b4cf72cadd3a2c30d3216ffd5b2bbcda2f7607df92f

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