A framework to define and operate Dialogflow Agents with a simple, code-first, approach 🔧
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:
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.
pip install intents
Intents are defined like standard Python dataclasses:
@dataclass
class HelloIntent(Intent):
"""A little docstring for my Intent class"""
user_name: Sys.Person = "Guido"
MyAgent.register(HelloIntent)
Their language resources are stored in separate YAML files:
utterances:
- Hi! My name is $user_name{Guido}
- Hello there, I'm $user_name{Mario}
responses:
default:
- text:
- Hi $user_name
- Hello $user_name, this is Bot!
Agents can be uploaded as Dialogflow ES projects directly from code:
df = DialogflowEsConnector('/path/to/service-account.json', MyAgent)
df.upload() # You will find it in your Dialogflow Console
Intents will act transparently as a prediction client:
predicted = df.predict("Hi there, my name is Mario")
predicted.intent # HelloIntent(user_name="Mario")
predicted.intent.user_name # "Mario"
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/ 📚
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.