gitextract__p4m59za/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── ----.md │ │ └── bug---.md │ ├── stale.yml │ └── workflows/ │ └── dockerimage.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── VERSION ├── docker/ │ ├── Dockerfile │ └── DockerfileArm ├── docs/ │ ├── .buildinfo │ ├── .nojekyll │ ├── AI.html │ ├── ASR.html │ ├── Brain.html │ ├── ConfigMonitor.html │ ├── Conversation.html │ ├── Player.html │ ├── TTS.html │ ├── Updater.html │ ├── _modules/ │ │ ├── index.html │ │ ├── logging.html │ │ ├── plugins/ │ │ │ ├── Camera.html │ │ │ ├── CleanCache.html │ │ │ ├── Echo.html │ │ │ ├── Email.html │ │ │ ├── Geek.html │ │ │ ├── LocalPlayer.html │ │ │ └── Poem.html │ │ ├── robot/ │ │ │ ├── AI.html │ │ │ ├── ASR.html │ │ │ ├── Brain.html │ │ │ ├── ConfigMonitor.html │ │ │ ├── Conversation.html │ │ │ ├── NLU.html │ │ │ ├── Player.html │ │ │ ├── TTS.html │ │ │ ├── Updater.html │ │ │ ├── config.html │ │ │ ├── constants.html │ │ │ ├── drivers/ │ │ │ │ ├── apa102.html │ │ │ │ └── pixels.html │ │ │ ├── logging.html │ │ │ ├── plugin_loader.html │ │ │ ├── sdk/ │ │ │ │ ├── AbstractPlugin.html │ │ │ │ ├── AliSpeech.html │ │ │ │ ├── RASRsdk.html │ │ │ │ ├── TencentSpeech.html │ │ │ │ ├── XunfeiSpeech.html │ │ │ │ └── unit.html │ │ │ ├── statistic.html │ │ │ └── utils.html │ │ ├── snowboy/ │ │ │ ├── snowboydecoder.html │ │ │ └── snowboydetect.html │ │ └── wukong.html │ ├── _sources/ │ │ ├── AI.rst.txt │ │ ├── ASR.rst.txt │ │ ├── Brain.rst.txt │ │ ├── ConfigMonitor.rst.txt │ │ ├── Conversation.rst.txt │ │ ├── Player.rst.txt │ │ ├── TTS.rst.txt │ │ ├── Updater.rst.txt │ │ ├── config.rst.txt │ │ ├── constants.rst.txt │ │ ├── drivers.rst.txt │ │ ├── index.rst.txt │ │ ├── logging.rst.txt │ │ ├── modules.rst.txt │ │ ├── plugin_loader.rst.txt │ │ ├── plugins.rst.txt │ │ ├── robot.drivers.rst.txt │ │ ├── robot.rst.txt │ │ ├── robot.sdk.rst.txt │ │ ├── snowboy.rst.txt │ │ ├── statistic.rst.txt │ │ ├── utils.rst.txt │ │ └── wukong.rst.txt │ ├── _static/ │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── css/ │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── jquery-3.2.1.js │ │ ├── jquery.js │ │ ├── js/ │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── translations.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ └── websupport.js │ ├── config.html │ ├── constants.html │ ├── drivers.html │ ├── genindex.html │ ├── index.html │ ├── logging.html │ ├── modules.html │ ├── objects.inv │ ├── plugin_loader.html │ ├── plugins.html │ ├── py-modindex.html │ ├── robot.drivers.html │ ├── robot.html │ ├── robot.sdk.html │ ├── search.html │ ├── searchindex.js │ ├── snowboy.html │ ├── statistic.html │ ├── utils.html │ └── wukong.html ├── plugins/ │ ├── Camera.py │ ├── CleanCache.py │ ├── Echo.py │ ├── Email.py │ ├── Geek.py │ ├── Gossip.py │ ├── LocalPlayer.py │ ├── Poem.py │ ├── Reminder.py │ ├── Volume.py │ └── __init__.py ├── requirements.txt ├── robot/ │ ├── AI.py │ ├── ASR.py │ ├── BCI.py │ ├── Brain.py │ ├── ConfigMonitor.py │ ├── Conversation.py │ ├── LifeCycleHandler.py │ ├── NLU.py │ ├── Player.py │ ├── Scheduler.py │ ├── TTS.py │ ├── Updater.py │ ├── __init__.py │ ├── config.py │ ├── constants.py │ ├── detector.py │ ├── drivers/ │ │ ├── AIY.py │ │ ├── __init__.py │ │ ├── apa102.py │ │ └── pixels.py │ ├── logging.py │ ├── plugin_loader.py │ ├── sdk/ │ │ ├── AbstractPlugin.py │ │ ├── AliSpeech.py │ │ ├── BaiduSpeech.py │ │ ├── FunASREngine.py │ │ ├── History.py │ │ ├── LED.py │ │ ├── RASRsdk.py │ │ ├── TencentSpeech.py │ │ ├── Unihiker.py │ │ ├── VITSClient.py │ │ ├── VolcengineSpeech.py │ │ ├── XunfeiSpeech.py │ │ ├── __init__.py │ │ ├── atc.py │ │ └── unit.py │ ├── statistic.py │ └── utils.py ├── server/ │ ├── server.py │ ├── static/ │ │ ├── api.css │ │ ├── bootbox.js │ │ ├── bubble.css │ │ ├── config.js │ │ ├── index.js │ │ ├── jquery.fancybox.css │ │ ├── jquery.fancybox.js │ │ ├── log.js │ │ ├── main.js │ │ ├── modernizr.touch.js │ │ ├── monokai-sublime.css │ │ ├── qa.js │ │ ├── signin.css │ │ ├── spin.css │ │ ├── starter-template.css │ │ └── static.js │ └── templates/ │ ├── api.html │ ├── api.md │ ├── config.html │ ├── donate.html │ ├── index.html │ ├── layout.html │ ├── log.html │ ├── login.html │ └── qa.html ├── snowboy/ │ ├── __init__.py │ ├── resources/ │ │ └── common.res │ ├── snowboydecoder.py │ └── snowboydetect.py ├── static/ │ ├── default.yml │ ├── qa.csv │ ├── snowboy.umdl │ ├── wukong.pmdl │ ├── wukong_pi.pmdl │ └── zhimakaimen.pmdl ├── tools/ │ ├── changelog.sh │ ├── make_json.py │ ├── solr_api.py │ └── solr_tools.py └── wukong.py