rcbyron / hey-athena-client

Your personal voice assistant
https://heyathena.com
MIT License
421 stars 98 forks source link
alexa assistant cortana cross-platform siri voice voice-commands voice-control voice-recognition

Hey Athena

|Travis Build| |PyPI version| |GitHub license|

Overview

Your personal voice assistant. Written in Python.

"Hey Athena" is a 100% open-source, modular voice assistant framework. We aim to do everything that Siri, Cortana, and Echo can do - and more.

| Website: https://heyathena.com | Documentation: https://heyathena.com/docs/ | Forum: https://heyathena.com/forum/ | GitHub: https://github.com/hey-athena/hey-athena-client

Usage Examples:

Say "Athena" (wait for double beep) then...

Write a simple "module" to control your house with your voice. See documentation: https://heyathena.com/docs/

Don't like the name "Athena"? Change it to anything you want, like "Joe" or "Swagger Bot".

Module Ideas

If you create a module, submit a pull request! We'd love to add it to the repository. You can also email it to connor@heyathena.com

Roadmap

Hey Athena is just getting started. We plan to build an open-source community built around a quality voice assistance framework. Here are some features you can expect to see in the future:

HTTP RESTful API

We are currently developing a cloud-hosted RESTful API (JSON) service. Users will be able to send HTTP requests and receive a voice/text JSON response.

Current: https://heyathena.com/api?q=test

Future: HTTP GET https://heyathena.com/api/{api_key}/q=list%20bitcoin%20price

Response: {"success": true, "response": "359.7", "intent": "bitcoin"}

How can I make my own Athena?

Installation

For installation notes, please use: https://heyathena.com/docs/intro/install.html

How can I help?

Core Dependencies

Active Modules

An active module is simply a collection of tasks. Tasks look for patterns in user text input (generally through "regular expressions"). If a pattern is matched, the task executes its action. Note: module priority is taken into account first, then task priority.

.. code:: python

"""
File Name: hello_world.py
Finds and returns the latest bitcoin price

Usage Examples:
- "What is the price of bitcoin?"
- "How much is a bitcoin worth?"
"""

from athena.classes.module import Module
from athena.classes.task import ActiveTask
from athena.api_library import bitcoin_api

class GetValueTask(ActiveTask):

    def __init__(self):
        # Matches any statement with the word "bitcoin"
        super().__init__(words=['bitcoin'])

    # This default match method can be overridden
    # def match(self, text):
    #    # "text" is the STT translated input string
    #    # Return True if the text matches any word or pattern
    #    return self.match_any(text)

    def action(self, text):
         # If 'bitcoin' was found in text, speak the bitcoin price
        bitcoin_price = str(bitcoin_api.get_data('last'))
        self.speak(bitcoin_price)

# This is a bare-minimum module
class Bitcoin(Module):

    def __init__(self):
        tasks = [GetValueTask()]
        super().__init__('bitcoin', tasks, priority=2)

Passive Modules

(soon-to-be implemented)

Athena APIs

An "Api" object is simply a separate library of functions for "Modules" to use. Athena stores a library of "Api" objects during runtime. Moreover, "Api" objects make it easy to load user configuration data at runtime. This is useful if your modules require username/password authentication (e.g. - logging into Spotify)

| Usage example: | from athena.apis import api_lib | api_lib['your_api_handle'].your_awesome_func()

Common Errors

Error: "no module named athena" Fix: Make sure the athena project directory is in your PYTHONPATH
Error: "AVbin is required to decode compressed media"
Fix: Pyglet needs the avbin.dll file to be installed. On Windows, sometimes the file is wrongfully placed in System32 instead of SysWOW64.
Other errors can be found by searching the issues on our GitHub page.

.. |Travis Build| image:: https://travis-ci.org/rcbyron/hey-athena-client.svg?branch=demo-branch :target: https://travis-ci.org/hey-athena/hey-athena-client .. |PyPI version| image:: https://badge.fury.io/py/heyathena.svg :target: https://badge.fury.io/py/heyathena .. |GitHub license| image:: https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000 :target: https://raw.githubusercontent.com/hey-athena/hey-athena-client/connor-branch/LICENSE