Skip to content

Server using @nestjs framework and @RasaHQ Machine Learning AI 🤖 - HTTP integration

License

Notifications You must be signed in to change notification settings

AlexOmey/nest-rasa-AI-sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nestjs with rasa HTTP integration

Prerequisites

Deploy Rasa NLU & Rasa Core using Docker

Rasa NLU Guide

Rasa Core Guide

# RASA NLU
docker pull rasa/rasa_nlu
docker run -p 5000:5000 --name rasa-nlu rasa/rasa_nlu
#RASA CORE
docker pull rasa/rasa_core
docker run -p 5005:5005 --name rasa-core rasa/rasa_core

Optional Rasa UI

Rasa UI Repo

git clone https://github.com/paschmann/rasaui.git
cd rasaui && npm install
docker build -t rasa-ui .

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

About

Server using @nestjs framework and @RasaHQ Machine Learning AI 🤖 - HTTP integration

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 81.4%
  • JavaScript 18.6%