Skip to main content

Toolkit for building conversational information access systems.

Project description

DialogueKit

Code style: black PyPi version Coverage Badge Tests Python version

DialogueKit is a library for conversational information access (CIA). It contains based classes for fundamental concepts, such as dialogue participants, dialogue management, natural language understanding, natural language generation, etc. In addition to the fundamental concepts DialogueKit contains an evaluation module, for evaluating the performance of and CIA systems. Consult the documentation for details.

Install as a package

DialogueKit is published to PyPI, install it by running:

pip install dialoguekit

If you want to install a DialogueKit from a specific commit or straight from github this is still possible.

The command will install the latest version from the main branch.

  • On Windows you may need to run this command before pip installing
ssh -t git github.com    
  • pip install
pip install git+ssh://git@github.com/iai-group/dialoguekit.git

If you want to specify a specific commit as the source of the package append the commit hash to the end of the command separated with a "@".

  • Specific commit as the source of the package.
pip install git+ssh://git@github.com/iai-group/dialoguekit.git@faa5c1fca37aaa275105cc1ca7698783719551c2

Usage example

  1. Define agent and user

    from dialoguekit.core.utterance import Utterance
    from dialoguekit.participant.user import User, UserType
    from sample_agents.parrot_agent import ParrotAgent
    
    # Participants
    agent = ParrotAgent("A01")
    user = User("U01")
    
  2. Create and connect platform and dialogue manager

    from dialoguekit.platforms.platform import Platform
    from dialoguekit.manager.dialogue_manager import DialogueManager
    
    platform = Platform()
    dm = DialogueManager(agent, user, platform)
    
    user.connect_dialogue_manager(dm)
    agent.connect_dialogue_manager(dm)
    
  3. Start conversation

      dm.start()
      dm.close()
    

Conventions

We follow the IAI Python Style Guide.

Contributors

(Alphabetically ordered by last name)

  • Jafar Afzali (2022)
  • Krisztian Balog (2021-present)
  • Nolwenn Bernard (2022-present)
  • Aleksander Drzewiecki (2022)
  • Shuo Zhang (2021)

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

dialoguekit-0.0.8.tar.gz (2.4 MB view hashes)

Uploaded Source

Built Distribution

dialoguekit-0.0.8-py3-none-any.whl (733.3 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