Find a file
2018-09-20 15:20:36 -05:00
.vscode build spacy tagger in pipeline/create ner in crf/ build wrapper:Crfutils 2018-08-01 15:25:50 -05:00
BotSharp.Algorithm Add HiddenMarkovModel algorithm. 2018-09-17 07:31:54 -05:00
BotSharp.Algorithm.UnitTest Abstract Bayes algorithm structure. 2018-09-09 09:36:22 -05:00
BotSharp.Core Official support Simple Chinese tokenize and POS tagger. 2018-09-20 11:45:25 -05:00
BotSharp.Core.UnitTest Improve intent accuracy greater than 0.7 2018-09-13 15:01:40 -05:00
BotSharp.NLP Official support Simple Chinese tokenize and POS tagger. 2018-09-20 11:45:25 -05:00
BotSharp.NLP.UnitTest Official support Simple Chinese tokenize and POS tagger. 2018-09-20 11:45:25 -05:00
BotSharp.RestApi Fix NER offset issue. 2018-09-14 11:31:35 -05:00
BotSharp.UI Update document in https://botsharp.readthedocs.io 2018-09-14 16:31:57 -05:00
BotSharp.Vision Monthly update release. 2018-09-05 23:45:09 -05:00
BotSharp.Voice Monthly update release. 2018-09-05 23:45:09 -05:00
BotSharp.WebHost Remove unnecessary configs in WebHost.csproj 2018-09-20 14:17:02 -05:00
docs Update installation.rst 2018-09-20 15:20:36 -05:00
Settings Official support Simple Chinese tokenize and POS tagger. 2018-09-20 11:45:25 -05:00
.dockerignore docker pull microsoft/aspnetcore-build 2018-08-13 11:12:10 -05:00
.gitignore Update document in https://botsharp.readthedocs.io 2018-09-14 16:31:57 -05:00
BotSharp.sln Official support Simple Chinese tokenize and POS tagger. 2018-09-20 11:45:25 -05:00
CONTRIBUTING.md Create CONTRIBUTING.md 2018-09-05 23:38:08 -05:00
docker-compose-articulateui.yml Update document in https://botsharp.readthedocs.io 2018-09-14 16:31:57 -05:00
docker-compose-rasaui.yml Rename docker-compose.yml to docker-compose-rasaui.yml 2018-08-24 10:19:29 -05:00
Dockerfile Fix dockerfile bug. 2018-09-13 16:52:19 -05:00
LICENSE Initial commit 2017-12-17 07:51:23 -06:00
README.rst Update README.rst 2018-09-20 09:47:18 -05:00

.. raw:: html

    <img src="https://github.com/Oceania2018/BotSharp/blob/master/BotSharp.WebHost/wwwroot/images/BotSharp.png" width="100px">
    
The Open Source AI Bot Platform Builder
======================================================
    
.. image:: https://img.shields.io/badge/gitter-join%20chat-brightgreen.svg
    :target: `gitter`_
    :alt: gitter
    :align: left
    
.. image:: https://img.shields.io/hexpm/l/plug.svg   
    :target: `license`_
    :alt: Hex.pm
    :align: left

.. image:: https://img.shields.io/nuget/dt/EntityFrameworkCore.BootKit.svg
    :target: `botsharpnuget`_
    :alt: NuGet
    
    
*"Conversation as a platform (CaaP) is the future, so it's perfect that we're already offering the whole toolkits to our .NET developers using the BotSharp AI BOT Platform Builder to build a CaaP. It opens up as much learning power as possible for your own robots and precisely control every step of the AI processing pipeline."*
    
**BotSharp** is an open source machine learning framework for AI Bot platform builder. This project involves natural language understanding, computer vision and audio processing technologies, and aims to promote the development and application of intelligent robot assistants in information systems. Out-of-the-box machine learning algorithms allow ordinary programmers to develop artificial intelligence applications faster and easier. 

.. raw:: html

    <img src="https://raw.githubusercontent.com/Oceania2018/BotSharp/master/docs/static/logos/BotSharpEngine.jpg" width="100%">
    
It's witten  in C# running on .Net Core that is full cross-platform framework. C# is a enterprise grade programming language which is widely used to code business logic in information management related system. More friendly to corporate developers. BotSharp adopts machine learning algrithm in C# directly. That will facilitate the feature of the typed language C#, and be more easier when refactoring code in system scope. 

Why we do this? because we all know python is not friendly programming language for enterprise developers, it's not only because it's low performance but also it's a type weak language, it will be a disater if you use python to build your bussiness system.

BotSharp is in accordance with components princple strictly, decouples every part that needed in the platform builder. So you can choose different UI/UX, or pick up a different NLP Tagger, or select a more advanced algrithm to do NER task. They are all modulized based an unfied interfaces.

Some Features
-------------

* Integrated debugging is easier without relying on any other machine learning algorithm libraries.
* Built-in multi-Agents management, easy to build Bot as a Service platform.
* Context In/ Out with lifespan to make conversion flow be controllable.
* Use the natural language processing pipeline mechanism to work with extensions easily, and build your own unique robot processing flows. 
* Rewrote NLP algorithm from ground without historical issues.
* Support export/ import agent from other bot platforms directly. 
* Support different UI providers like `Rasa UI`_ and `Articulate UI`_.
* Support for multiple data request and response formats such as Rasa NLU and Dialogflow.
* Integrate with popular social platforms like Facebook Messenger, Slack and Telegram.
* Multi-core parallel computing optimization, High-Performance C# on GPUs in Hybridizer.

Quick Started
-------------
You can use docker compose to run BotSharp quickly, make sure you've got `Docker`_ installed.
::

 PS D:\> git clone https://github.com/Oceania2018/BotSharp
 PS D:\> cd BotSharp
 PS D:\BotSharp\> docker-compose -f docker-compose-articulateui.yml up

Point your web browser at http://localhost:3000 and enjoy BotSharp with Articulate-UI.


Documents
---------
Read the docs: https://botsharp.readthedocs.io

Feel free to message me on 

.. image:: https://img.shields.io/badge/gitter-join%20chat-brightgreen.svg
    :target: `gitter`_

If you feel that this project is helpful to you, please Star on the project, we will be very grateful.

.. _Docker: https://www.docker.com
.. _Rasa UI: https://github.com/paschmann/rasa-ui
.. _Articulate UI: https://spg.ai/projects/articulate
.. _gitter: https://gitter.im/botsharpcore/Lobby
.. _license: https://raw.githubusercontent.com/Oceania2018/BotSharp/master/LICENSE
.. _botsharpnuget: https://www.nuget.org/packages/BotSharp.Core