Metadata-Version: 2.1
Name: bda-chatbot
Version: 0.0.2
Summary: Source code for the bda chatbot bachelor thesis fs19
Home-page: https://github.com/bda-19fs/bda-chatbot
Author: Alan Meile, Cyrill Jauner
Author-email: alan.meile@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >3.6
Description-Content-Type: text/markdown
Requires-Dist: Click (==7.0)
Requires-Dist: nltk (==3.4)
Requires-Dist: numpy (==1.16.2)
Requires-Dist: pandas (==0.24.2)
Requires-Dist: untangle (==1.1.1)

| Travis CI                                   | Coveralls                                            |
|---------------------------------------------|------------------------------------------------------|
| [![Build Status][travis-badge]][travis-url] | [![Coverage status][coveralls-badge]][coveralls-url] |

| Travis build history                                  |
|-------------------------------------------------------|
| [![Travis build history][travis-history]][travis-url] |

# BDA - Chatbot
This is the code base of the students @tbjauner and @tbmeile. We want to implement a question answering model. With the goal to be able to answer ionesoft inquiries. We are enhancing the language model with a wikipedia dump.

## Project structure
In order to achieve a clean architecture we are inspired by the onion architecture.
![Onion Architecture](http://blog.cleancoder.com/uncle-bob/images/2012-08-13-the-clean-architecture/CleanArchitecture.jpg)

For more information see: http://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html

### Entities
Entities encapsulate Enterprise wide business rules. An entity can be an object with methods, or it can be a set of data structures and functions. It doesn’t matter so long as the entities could be used by many different applications in the enterprise.

### Use Cases
The software in this layer contains application specific business rules. It encapsulates and implements all of the use cases of the system. These use cases orchestrate the flow of data to and from the entities, and direct those entities to use their enterprise wide business rules to achieve the goals of the use case.

[travis-url]: https://travis-ci.org/bda-19fs/bda-chatbot
[travis-badge]: https://travis-ci.org/bda-19fs/bda-chatbot.svg?branch=master
[travis-history]: https://buildstats.info/travisci/chart/bda-19fs/bda-chatbot?branch=master&includeBuildsFromPullRequest=false

[coveralls-badge]: https://coveralls.io/repos/github/bda-19fs/bda-chatbot/badge.svg?branch=master
[coveralls-url]: https://coveralls.io/github/bda-19fs/bda-chatbot?branch=master


