Skip to main content

[![Documentation Status](https://github.com/deeppavlov/dialog_flow_framework/workflows/build_and_publish_docs/badge.svg)](https://deeppavlov.github.io/dialog_flow_framework)

Project description

Dialog Flow Framework

Documentation Status Codestyle Tests License Apache 2.0 Python 3.8, 3.9, 3.10, 3.11 PyPI Downloads

The Dialog Flow Framework (DFF) allows you to develop conversational services. DFF offers a specialized domain-specific language (DSL) for quickly writing dialogs in pure Python. The service is created by defining a special dialog graph that determines the behavior of the dialog agent. The latter is then leveraged in the DFF pipeline. You can use the framework in various services such as social networks, call centers, websites, personal assistants, etc.

Why choose DFF

  • Written in pure Python, the framework is easily accessible for both beginners and experienced developers.
  • For the same reason, all the abstractions used in DFF can be easily customized and extended using regular language synthax.
  • DFF offers easy and straightforward tools for state management which is as easy as setting values of a Python dictionary.
  • The framework is being actively maintained and thoroughly tested. The team is open to suggestions and quickly reacts to bug reports.

Quick Start

Installation

DFF can be installed via pip:

pip install dff

The above command will set the minimum dependencies to start working with DFF. The installation process allows the user to choose from different packages based on their dependencies, which are:

pip install dff[json]  # dependencies for using JSON
pip install dff[pickle] # dependencies for using Pickle
pip install dff[redis]  # dependencies for using Redis
pip install dff[mongodb]  # dependencies for using MongoDB
pip install dff[mysql]  # dependencies for using MySQL
pip install dff[postgresql]  # dependencies for using PostgreSQL
pip install dff[sqlite]  # dependencies for using SQLite
pip install dff[ydb]  # dependencies for using Yandex Database
pip install dff[telegram]  # dependencies for using Telegram
pip install dff[benchmark]  # dependencies for benchmarking

For example, if you are going to use one of the database backends, you can specify the corresponding requirements yourself. Multiple dependencies can be installed at once, e.g.

pip install dff[postgresql,mysql]

Basic example

The following code snippet builds a simplistic chat bot that replies with messages Hi! and OK depending on user input, which only takes a few lines of code. All the abstractions used in this example are thoroughly explained in the dedicated user guide.

from dff.script import GLOBAL, TRANSITIONS, RESPONSE, Message
from dff.pipeline import Pipeline
import dff.script.conditions.std_conditions as cnd

# create a dialog script
script = {
GLOBAL: {
TRANSITIONS: {
("flow", "node_hi"): cnd.exact_match(Message(text="Hi")),
("flow", "node_ok"): cnd.true()
}
},
"flow": {
"node_hi": {RESPONSE: Message(text="Hi!")},
"node_ok": {RESPONSE: Message(text="OK")},
},
}

# init pipeline
pipeline = Pipeline.from_script(script, start_label=("flow", "node_hi"))


def turn_handler(in_request: Message, pipeline: Pipeline) -> Message:
# Pass user request into pipeline and get dialog context (message history)
# The pipeline will automatically choose the correct response using script
ctx = pipeline(in_request, 0)
# Get last response from the context
out_response = ctx.last_response
return out_response


while True:
in_request = input("Your message: ")
out_response = turn_handler(Message(text=in_request), pipeline)
print("Response: ", out_response.text)

When you run this code, you get similar output:

Your message: hi
Response:  OK
Your message: Hi
Response:  Hi!
Your message: ok
Response:  OK
Your message: ok
Response:  OK

More advanced examples are available as a part of documentation: tutorials.

Further steps

To further explore the API of the framework, you can make use of the detailed documentation. Broken down into several sections to highlight all the aspects of development with DFF, the documentation for the library is constantly available online.

Contributing to the Dialog Flow Framework

We are open to accepting pull requests and bug reports. Please refer to CONTRIBUTING.md.

License

DFF is distributed under the terms of the Apache License 2.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

dff-0.6.4.tar.gz (108.2 kB view hashes)

Uploaded Source

Built Distribution

dff-0.6.4-py3-none-any.whl (178.1 kB view hashes)

Uploaded Python 3

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