All Projects → olivia-ai → Olivia

olivia-ai / Olivia

Licence: mit
💁‍♀️Your new best friend powered by an artificial neural network

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Olivia

Mycroft Core
Mycroft Core, the Mycroft Artificial Intelligence platform.
Stars: ✭ 5,489 (+76.27%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing, voice-assistant
Riceteacatpanda
repo with challenge material for riceteacatpanda (2020)
Stars: ✭ 18 (-99.42%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Awesome Ai Ml Dl
Awesome Artificial Intelligence, Machine Learning and Deep Learning as we learn it. Study notes and a curated list of awesome resources of such topics.
Stars: ✭ 831 (-73.31%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
leon
🧠 Leon is your open-source personal assistant.
Stars: ✭ 8,560 (+174.89%)
Mutual labels:  chatbot, assistant, voice-assistant
Catalyst
🚀 Catalyst is a C# Natural Language Processing library built for speed. Inspired by spaCy's design, it brings pre-trained models, out-of-the box support for training word and document embeddings, and flexible entity recognition models.
Stars: ✭ 224 (-92.81%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Deeppavlov
An open source library for deep learning end-to-end dialog systems and chatbots.
Stars: ✭ 5,525 (+77.42%)
Mutual labels:  artificial-intelligence, ai, chatbot
Ml
A high-level machine learning and deep learning library for the PHP language.
Stars: ✭ 1,270 (-59.22%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Intelligo
🤖 Chatbot Framework for Node.js.
Stars: ✭ 347 (-88.86%)
Mutual labels:  artificial-intelligence, ai, chatbot
Nlpaug
Data augmentation for NLP
Stars: ✭ 2,761 (-11.34%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Lazy
Lazy, AI chatbot service.
Stars: ✭ 141 (-95.47%)
Mutual labels:  artificial-intelligence, ai, chatbot
Rivescript Python
A RiveScript interpreter for Python. RiveScript is a scripting language for chatterbots.
Stars: ✭ 142 (-95.44%)
Mutual labels:  artificial-intelligence, ai, chatbot
Spacy
💫 Industrial-strength Natural Language Processing (NLP) in Python
Stars: ✭ 21,978 (+605.78%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Botlibre
An open platform for artificial intelligence, chat bots, virtual agents, social media automation, and live chat automation.
Stars: ✭ 412 (-86.77%)
Mutual labels:  artificial-intelligence, chatbot, natural-language-processing
Rivescript Js
A RiveScript interpreter for JavaScript. RiveScript is a scripting language for chatterbots.
Stars: ✭ 350 (-88.76%)
Mutual labels:  artificial-intelligence, ai, chatbot
Thinc
🔮 A refreshing functional take on deep learning, compatible with your favorite libraries
Stars: ✭ 2,422 (-22.22%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Botsharp
The Open Source AI Chatbot Platform Builder in 100% C# Running in .NET Core with Machine Learning algorithm.
Stars: ✭ 1,103 (-64.58%)
Mutual labels:  artificial-intelligence, chatbot, natural-language-processing
Tock
Tock - the open source conversational AI toolkit
Stars: ✭ 175 (-94.38%)
Mutual labels:  ai, chatbot, assistant
Delbot
It understands your voice commands, searches news and knowledge sources, and summarizes and reads out content to you.
Stars: ✭ 191 (-93.87%)
Mutual labels:  ai, chatbot, natural-language-processing
Cocoaai
🤖 The Cocoa Artificial Intelligence Lab
Stars: ✭ 134 (-95.7%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing
Fixy
Amacımız Türkçe NLP literatüründeki birçok farklı sorunu bir arada çözebilen, eşsiz yaklaşımlar öne süren ve literatürdeki çalışmaların eksiklerini gideren open source bir yazım destekleyicisi/denetleyicisi oluşturmak. Kullanıcıların yazdıkları metinlerdeki yazım yanlışlarını derin öğrenme yaklaşımıyla çözüp aynı zamanda metinlerde anlamsal analizi de gerçekleştirerek bu bağlamda ortaya çıkan yanlışları da fark edip düzeltebilmek.
Stars: ✭ 165 (-94.7%)
Mutual labels:  artificial-intelligence, ai, natural-language-processing


Olivia's character

💁‍♀️ Your new best friend

GoDoc

Twitter Follow

WebsiteDocumentationGetting startedIntroductionTranslationsContributorsLicense

⚠️ Please check the Call for contributors

Introduction

introduction

Description

Olivia is an open-source chatbot built in Golang using Machine Learning technologies. Its goal is to provide a free and open-source alternative to big services like DialogFlow.

You can chat with her by speaking (STT) or writing, she replies with a text message but you can enable her voice (TTS).

You can clone the project and customize it as you want using GitHub Try it on her website!

Why Olivia?

  • The only chatbot project in Go that could be modulable and customizable.
  • Using daily a privacy-friendly chatbot is great.
  • The Website is a Progressive Web Application, which means you can add it to your phone and it seems like a native app!

Getting started

Installation

Login to Github

To get a personal access token from Github go to Setings > Developer settings > Personal Access Tokens

Click on Generate new Token and name it you MUST have read and write packages ticked on. Then click Generate new token

Replace TOKEN with the Token that you just made.

$ export PAT=TOKEN

Login to Github (Note: change USERNAME to Gthub username)

$ echo $PAT | docker login docker.pkg.github.com -u USERNAME --password-stdin

Docker

docker installation

Pull the image from GitHub Packages

$ docker pull docker.pkg.github.com/olivia-ai/olivia/olivia:latest

Then start it

$ docker run -d -e PORT=8080 -p 8080:8080 docker.pkg.github.com/olivia-ai/olivia/olivia:latest

You can just use the websocket of Olivia now.

To stop it, get the container id:

$ docker container ls
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS                    NAMES
311b3abb963a        olivia              "./main"            7 minutes ago       Up 7 minutes        0.0.0.0:8080->8080/tcp   quizzical_mayer

and stop it

$ docker container stop 311b3abb963a 

The app will automatically check for res/datasets/training.json file which contains the save of the neural network. By default when you clone the repository from Github you have a stable save. If you want to train a new model just delete this file and rerun the app.

GitHub

Clone the project via GitHub:

$ git clone [email protected]:olivia-ai/olivia.git

Then download the dependencies

$ go mod download

And run it

$ go run main.go

Frontend and Backend

To install the frontend and the backend together, please use the docker-compose.yml file:

$ docker-compose up

And all done!

Architecture

architecture

Translations

introduction

Languages supported

  • English
  • Spanish
  • Catalan
  • French
  • German
  • Italian
  • Brazilian portuguese - not completed

Coverage

The coverage of the translations is given here. To add a language please read the documentation for that.

Contributors

docker installation

Contributing

Please refer to the contributing file

Code Contributors

Thanks to the people who contribute to Olivia.

Contribute

Financial Contributors

Become a financial contributor and help Olivia growth.

Contribute on the GitHub page of hugolgst ❤️

License

FOSSA Status

Made with ❤️ by Hugo Lageneste

Olivia's wave

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].