Giter Site home page Giter Site logo

alexmhack / django-rasa-sockets Goto Github PK

View Code? Open in Web Editor NEW
12.0 4.0 4.0 2.86 MB

Rasa Chatbot using Django backend and Sockets for communication

Python 2.48% CSS 3.55% JavaScript 93.32% HTML 0.66%
django2 rasa socket-io chatbot socket django-backend django-rasa-sockets browserify rasa-chatbot

django-rasa-sockets's Introduction

NOTE: Currently not working. This repo is currently under development, open issue for any question.

Django-Rasa-Sockets

Rasa Chatbot using Django backend and Sockets for communication

Assuming you have a starter django project with static and templates folder configured with django and a root index view rendering index.html file from templates folder

A basic rasa core and rasa nlu made chatbot with socket.io setup is inside rasachat folder of the repo

Steps to setup socket.io

  1. Install NodeJS from official site.

  2. Inside root folder run command

    npm init
    

    You will be asked to enter details for the project, you can enter whatever you want. This command will create a package.json file.

  3. Install socket.io using npm

    npm install --save socket.io
    
  4. Install browserify using npm globally

    npm install -g browserify
    
  5. Now in static/js folder, create two files, one for backend javascript code and another for frontend which will be created by browserify

    chat.js 	-> backend written by us
    bundle.js 	-> frontend compiled by browserify
    
  6. When you have your backend javascript code ready with socket.io setup run browserify command to compile file for frontend

    cd static/js
    browserify chat.js -o bundle.js
    
  7. In templates/index.html file load static and add script tag for browserify compiled bundle.js file

    <script src="{% static 'js/bundle.js' %}" type="text/javascript" charset="utf-8"></script>
    

    You can reuse the javascript code from the repo

  8. Run the django server from root folder

    python manage.py runserver
    

    Run the rasa core server from rasachat folder

    cd rasachat
    python bot.py 	-> python script for rasa socket server
    # or you can run using run script
    python -m rasa_core.run -d models/dialogue -u models/current/nlu --port 5500 --credentials credentials.yml 		-> Using run script
    

    interact with chatbot using sockets and django.

Usage

git clone https://github.com/Alexmhack/Django-Rasa-Sockets

Replace the rasachat folder with your rasa core chatbot and follow the ** 8th step**

Locate to 127.0.0.1:8000/ and click on button at bottom right and enter hey in the input.

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.