Skip to main content

A Python interface to Microsoft LUIS.

Project description

https://travis-ci.org/wiseman/pyluis.svg?branch=master

pyluis

This is a Python interface to Microsoft LUIS <https://luis.ai/> (Language Understanding Intelligent Service).

How to use it

After you have created and published your LUIS application, you can use it to analyze text:

>>> import luis

# Use the URL LUIS gives you when you publish your app.
>>> l = luis.Luis(url='https://https://api.projectoxford.ai/luis/...')

# Send text to be analyzed:
>>> r = l.analyze('fly forward 10 feet')

# See all identified intents:
>>> print r.intents
[<Intent intent=u'TRANSLATE' score=1.0>,
 <Intent intent=u'None' score=0.015184097>,
 <Intent intent=u'ROTATE' score=0.00713030435>,
 ...]

# See all identified entities:
>>> print r.entities
[<Entity entity=u'forward' type=u'FORWARD' score=0.9585199 start_index=4 end_index=10>,
 <Entity entity=u'10 feet' type=u'builtin.dimension' score=0.9829198 start_index=12 end_index=18>]

# What was the highest-scored intent?
>>> best = r.best_intent()
>>> print best
<Intent intent=u'TRANSLATE' score=1.0>
>>> print best.intent
u'TRANSLATE'
>>> print best.score
1.0

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

luis-2.0.2.tar.gz (5.3 kB view hashes)

Uploaded Source

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