Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

axa-group/reasoning-api-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Disclaimer: This repository is not maintained anymore!


Reasoning API Framework

A tool to rapidly model contract rules and expose them as APIs for integration with conversational agents.

Editor

Description

This code was developed by the AXA REV research team to serve as prototype to rapidly model contract rules and expose them as APIs for integration with conversational agents.

Main features:

  • Intuitive, mxGraph powered user interface to model contract rules (statements)
  • Easy API url setup and instant data updates
  • Built-in error prevention based on the quality engineering principle of poka-yoke
  • Multi-tenancy: Operate APIs for multiple contracts within one framework
  • User authentication using Devise and role-based user authorization using cancancan

Setup

0. Requirements

  • Ruby 2.4.1+
  • bundler, gem install bundler
  • A database, e.g. MySQL, PostgreSQL, Oracle

1. Web application

Clone the respository and install the required gems:

bundle install

Generate secret keys for the development and test sections in config/secrets.yml:

rake secret

Create the database and load the schema:

rake db:setup

Open the Rails console with rails c and create your admin account:

User.create(email: "[email protected]", password: "TOPSECRET_PASSWORD", password_confirmation: "TOPSECRET_PASSWORD", role: "admin")

Startup your local web server:

rails s

Login in at http://localhost:3000 and create your first Reasoning API.

Contact

For questions, please contact [email protected].

MIT License

Copyright (c) AXA Group Operations SAS

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Releases

No releases published

Packages

No packages published