项目作者: dariowho

项目描述 :
A framework to define and operate Dialogflow Agents with a simple, code-first, approach 🔧
高级语言: Python
项目地址: git://github.com/dariowho/intents.git
创建时间: 2021-01-31T22:02:50Z
项目社区:https://github.com/dariowho/intents

开源协议:Apache License 2.0

下载


Intents ⛺

Documentation Status
codecov
HEAD version
PyPI version

Intents is a Python framework to define and operate
Conversational Agents with a simple, code-first approach. Intents comes with
built-in support for Dialogflow ES and experimental Alexa and Snips connectors. Its main benefits are:

  • Agents are Python projects. You will develop with autocomplete, static type checking
    and everything you are already used to.
  • Versioning and CI. Agents can be versioned on Git, and programmatically
    deployed just like software.
  • Human-friendly Connectors. Intents are classes, predictions are their
    instances. Support can be extended beyond Dialogflow by implementing custom connectors.

A detailed view of the available features can be found in
STATUS.md. Also, check out the
Projects page to keep track of
recent developments.

Install

  1. pip install intents

Usage

Intents are defined like standard Python dataclasses:

  1. @dataclass
  2. class HelloIntent(Intent):
  3. """A little docstring for my Intent class"""
  4. user_name: Sys.Person = "Guido"
  5. MyAgent.register(HelloIntent)

Their language resources are stored in separate YAML files:

  1. utterances:
  2. - Hi! My name is $user_name{Guido}
  3. - Hello there, I'm $user_name{Mario}
  4. responses:
  5. default:
  6. - text:
  7. - Hi $user_name
  8. - Hello $user_name, this is Bot!

Agents can be uploaded as Dialogflow ES projects directly from code:

  1. df = DialogflowEsConnector('/path/to/service-account.json', MyAgent)
  2. df.upload() # You will find it in your Dialogflow Console

Intents will act transparently as a prediction client:

  1. predicted = df.predict("Hi there, my name is Mario")
  2. predicted.intent # HelloIntent(user_name="Mario")
  3. predicted.intent.user_name # "Mario"
  4. predicted.fulfillment_text # "Hello Mario, this is Bot!"

For a complete working example, check out the included Example Agent. Also, Intents documentation is published at https://intents.readthedocs.io/ 📚

Disclaimer

This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with Dialogflow. The names Dialogflow, Google, as well as related names, marks, emblems and images are registered trademarks of their respective owners.