Code Monkey home page Code Monkey logo

covid-19's Introduction

Canada COVID-19 Bot

Conventional Commits CircleCI

See project wiki at https://github.com/dialoguemd/covid-19/wiki

The purpose of this app is to deliver accurate personalized information from trusted Canadian medical sources regarding COVID-19.

This service personalizes the information about the virus based on user's individual situation. All content is vetted by Canadian medical professionals.

Who is behind this project

The project is created by Dialogue. Dialogue is the leading Canadian telemedicine provider pioneering virtual healthcare dedicated exclusively to the world's leading organizations. We drive real health outcomes through amazing healthcare experiences, an employee engagement playbook, and a relentless focus on patient safety and security.

How to contribute

See CONTRIBUTING.md.

Content structure

The structure of this project is based on the following concepts:

  • The chatbot is composed of steps. Steps are chained. Each step specifies the next step. A step with a question (eg. "dDo you have fever?" is followed by a step with a set of options (eg. Yes or No). The user selects an option and the system records a new fact (eg. Fever:Yes).
  • All facts are used as input to the rules engine. The rules are used to classify the set of facts into classes. For example, if there is a rule that states that if the facts include Fever:Yes, then this set of facts must be classified as "high-risk".
  • Each class represents a set of content files. Each class has it's own subdirectory under src/content directory. A content file is a Markdown file that has a title, body and a source. A file name of the content file must be in the form filename.{language-code}.md.

How add new content

The content served to uses is stored in text files in https://github.com/dialoguemd/covid-19/tree/master/src/content.

The files are placed in sub-sirectories. Each sub-directory corresponds to a "content class". A content class is a collection of content that will be served to all users that belong to a class. Which class a user belongs to is determined by the answers they provide.

All content files follow the Markdown format.

To add a new content file, do the following:

  • Determine which class your content file belongs to.
  • Create a new .md file and add content in it
  • Make sure to follow this format:
## Title

Your content goes here

[Source](https://link-to-the-source-of-the-content)

  • Make sure the last line in your file needs to be blank.
  • Create a pull request and submit it.

How to add new classes of content

Running locally

In the project directory, you can run:

npm install

Installs the dependencies.

npm start

Runs the app in the development mode.

Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

npm run build

Builds the app for production to the build folder.

It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.

Your app is ready to be deployed!

See the section about deployment for more information.

Rules

Defining rules is handled by json-rules-engine.

Definitions

  • Facts are the values collected through the chat
  • Rules are the evaluation of those facts
  • Results are generated from the rules being applied to those facts

Adding rules

Globally

Add them to rules/global.json

On Step

They can also be defined on a step directly under metadata. Step-defined rules will only be applied if that step was rendered.

e.g.

steps = [
  {
    id: '1',
    message: 'Pick a number',
    trigger: '2',
    metadata: {
      rule: {
        "conditions":{...},
        "event":{...}
      }
    }
  },
  ...
]

covid-19's People

Contributors

gmyard2019 avatar alexissmirnov avatar jaredsavage avatar vicrep avatar vanessajones avatar hollyorlando avatar lp-noel avatar mulinsky99 avatar guainumbi avatar griffgeorge avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.