Code Monkey home page Code Monkey logo

mycroft-core's Introduction

Mycroft Build Status Coverage Status PRs Welcome

Mycroft is a hackable open source voice assistant.

NOTE: The default branch for this repository is 'dev', which should be considered a working beta. If you want to clone a more stable version, switch over to the 'master' branch.

Table of Contents

Getting Started

Ubuntu/Debian, Arch, or Fedora

  • Run the build host setup script for your OS (Ubuntu/Debian: build_host_setup_debian.sh, Arch: build_host_setup_arch.sh, Fedora: build_host_setup_fedora.sh). This script installs necessary packages. Please read it!

  • Run dev_setup.sh (Feel free to read it, as well).

  • Restart session (Rebooting, or logging out and back in might work).

Other Environments

The following packages are required for setting up the development environment and are installed by build_host_setup scripts:

  • git
  • python 2
  • python-setuptools
  • python-virtualenv
  • pygobject
  • virtualenvwrapper
  • libtool
  • libffi
  • openssl
  • autoconf
  • bison
  • swig
  • glib2.0
  • s3cmd
  • portaudio19
  • mpg123
  • flac
  • curl

Home Device and Account Manager

Mycroft AI, Inc. maintains a device and account management system known as Mycroft Home. Developers may sign up at: https://home.mycroft.ai

By default, Mycroft software is configured to use Home. Upon any request such as "Hey Mycroft, what is the weather?", you will be informed that your device needs to be paired. Mycroft will speak a 6-digit code, which is entered into the pairing page within the Mycroft Home site.

Once signed and paired, your unit will use Mycroft API keys for services such as STT (Speech-to-Text), weather, Wolfram-Alpha, and various other skills.

Pairing information generated by registering with Home is stored in:

~/.mycroft/identity/identity2.json <-- DO NOT SHARE THIS WITH OTHERS!

It is useful to know the location of this identity file when troubleshooting any device pairing issues.

Using Mycroft Without Home.

If you do not wish to use the Mycroft Home service, you may insert your own API keys into the configuration files listed below in configuration.

The place to insert the API key looks like the following:

[WeatherSkill]

api_key = ""

Put a relevant key inside the quotes and Mycroft Core should begin to use the key immediately.

API Key Services

These are the keys currently used in Mycroft Core:

Configuration

Mycroft configuration consists of 4 possible locations:

  • mycroft-core/mycroft/configuration/mycroft.conf(Defaults)
  • Mycroft Home (Remote)
  • /etc/mycroft/mycroft.conf(Machine)
  • $HOME/.mycroft/mycroft.conf(User)

When the configuration loader starts, it looks in these locations in this order, and loads ALL configurations. Keys that exist in multiple configuration files will be overridden by the last file to contain the value. This process results in a minimal amount being written for a specific device and user, without modifying default distribution files.

Running Mycroft Quick Start

To start essential tasks, run ./mycroft.sh start. This command will start the Mycroft service, skills, voice, and command line interface (cli) using --quiet mode in a detached screen. Output of these screens will be written to their respective log files (e.g. ./log/mycroft-service.log).

Optionally, you may run ./mycroft.sh start -v which will start the Mycroft service, skills, and voice.

You may also run ./mycroft.sh start -c which will start the Mycroft service, skills and command line interface.

To stop Mycroft, run ./mycroft.sh stop. This command will terminate all detached screens.

To restart Mycroft, run ./mycroft.sh restart.

Quick Screen Tips

  • Run screen -list to see all running screens.

  • Run screen -r [screen-name] (e.g. screen -r mycroft-service) to reattach a screen.

  • To detach a running screen, press Ctrl + a, Ctrl + d

See the screen man page for more details.

Running Mycroft

With start.sh

Mycroft provides start.sh to run a large number of common tasks. This script uses a virtualenv created by dev_setup.sh. The usage statement lists all run targets, but to run a Mycroft stack out of a git checkout, the following processes should be started:

  • Run ./start.sh service
  • Run ./start.sh skills
  • Run ./start.sh voice

Note: The above scripts are blocking, so each will need to be run in a separate terminal session.

Without start.sh

Activate your virtualenv.

With virtualenv-wrapper:

workon mycroft

Without virtualenv-wrapper:

source ~/.virtualenvs/mycroft/bin/activate
  • Run PYTHONPATH=. python client/speech/main.py # Main speech detection loop, which prints events to stdout and broadcasts them to the message bus.
  • Run PYTHONPATH=. python client/messagebus/service/main.py # Main message bus, implemented via web sockets.
  • Run PYTHONPATH=. python client/skills/main.py # Main skills executable, loads all skills under skills directory.

Note: The above scripts are blocking, so each will need to be run in a separate terminal session. Each terminal session will require that the virtualenv be activated. There are very few reasons to use this method.

Getting Involved

This is an open source project and we would love your help. We have prepared a contributing guide to help you get started.

If this is your first PR or you're not sure where to get started, say hi in Mycroft Chat and a team member would be happy to mentor you.

FAQ / Common Errors

When running Mycroft, I get the error mycroft.messagebus.client.ws - ERROR - Exception("Uncaught 'error' event.",)

This means that you are not running the ./start.sh service process. In order to fully run Mycroft, you must run ./start.sh service, ./start.sh skills, ./start.sh voice, and ./start.sh cli all at the same time. This can be done using different terminal windows, or by using the included ./mycroft.sh start command, which runs all four process using screen.

mycroft-core's People

Contributors

aatchison avatar forslund avatar augustnmonteiro avatar kfezer avatar ethanaward avatar matthewscholefield avatar learnedvector avatar soloveniaasaludar avatar jasonehines avatar isaacnward avatar jdorleans avatar el-tocino avatar the7erm avatar amcgee7 avatar jarbasai avatar ashwinjv avatar jarbasal avatar dmendyke avatar clusterfudge avatar blackbaud-ryansnedegar avatar chrison999 avatar vavrek avatar connor-penrod avatar nullr0ute avatar flexiondotorg avatar joshua-montgomery avatar kagesenshi avatar wligtenberg avatar shiribailem avatar matlar avatar

Watchers

James Cloos avatar Pham Tuan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.