-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## [0.0.1a8](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a8) (2024-04-05) [Full Changelog](0.0.1a7...0.0.1a8) **Implemented enhancements:** - \[FEAT\] Automate node image building [\#4](#4) **Merged pull requests:** - Pin upper limit for numpy compat. [\#12](#12) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a7](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a7) (2024-02-28) [Full Changelog](0.0.1a6...0.0.1a7) **Merged pull requests:** - Update dependencies to stable or pinned alpha specs [\#11](#11) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a6](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a6) (2024-02-28) [Full Changelog](0.0.1a5...0.0.1a6) **Merged pull requests:** - Fix event passed to neon-os build [\#10](#10) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a5](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a5) (2024-02-28) [Full Changelog](0.0.1a4...0.0.1a5) **Merged pull requests:** - Add token to trigger NeonOS build [\#9](#9) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a4](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a4) (2024-02-28) [Full Changelog](0.0.1a3...0.0.1a4) **Merged pull requests:** - Fixes syntax error in test build automation [\#8](#8) ([NeonDaniel](https://github.com/NeonDaniel)) - Add automation to trigger a Neon OS build on push to `dev` [\#6](#6) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a3](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a3) (2024-02-08) [Full Changelog](0.0.1a2...0.0.1a3) **Merged pull requests:** - Fix GitHub Automation [\#3](#3) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.1a2](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a2) (2024-02-08) [Full Changelog](3b96078...0.0.1a2) **Merged pull requests:** - Initial implementation with NeonVoiceClient [\#1](#1) ([NeonDaniel](https://github.com/NeonDaniel)) \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
- Loading branch information
Showing
16 changed files
with
658 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Run License Tests | ||
on: | ||
push: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- master | ||
jobs: | ||
license_tests: | ||
uses: neongeckocom/.github/.github/workflows/license_tests.yml@master | ||
with: | ||
packages-exclude: '^(neon-nodes|dnspython).*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Propose Stable Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_type: | ||
type: choice | ||
description: Release Type | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
jobs: | ||
update_version: | ||
uses: neongeckocom/.github/.github/workflows/propose_semver_release.yml@master | ||
with: | ||
branch: dev | ||
release_type: ${{ inputs.release_type }} | ||
update_changelog: True | ||
version_file: "neon_nodes/version.py" | ||
pull_changes: | ||
uses: neongeckocom/.github/.github/workflows/pull_master.yml@master | ||
needs: update_version | ||
with: | ||
pr_reviewer: neonreviewers | ||
pr_assignee: ${{ github.actor }} | ||
pr_draft: false | ||
pr_title: ${{ needs.update_version.outputs.version }} | ||
pr_body: ${{ needs.update_version.outputs.changelog }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This workflow will generate a release distribution and upload it to PyPI | ||
|
||
name: Publish Build and GitHub Release | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build_and_publish_pypi_and_release: | ||
uses: neongeckocom/.github/.github/workflows/publish_stable_release.yml@master | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This workflow will generate a distribution and upload it to PyPI | ||
|
||
name: Publish Alpha Build | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
paths-ignore: | ||
- 'neon_nodes/version.py' | ||
|
||
jobs: | ||
publish_alpha_release: | ||
uses: neongeckocom/.github/.github/workflows/publish_alpha_release.yml@master | ||
secrets: inherit | ||
with: | ||
version_file: "neon_nodes/version.py" | ||
publish_prerelease: true | ||
trigger_os_build: | ||
runs-on: ubuntu-latest | ||
needs: publish_alpha_release | ||
steps: | ||
- name: Call Release Action | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{secrets.NEON_OS_TOKEN}} | ||
repository: neongeckocom/neon-os | ||
event-type: Publish Release | ||
client-payload: |- | ||
{ | ||
"ref": "dev", | ||
"repo": "neon-nodes" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Run Unit Tests | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
py_build_tests: | ||
uses: neongeckocom/.github/.github/workflows/python_build_tests.yml@master | ||
with: | ||
python_version: "3.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Changelog | ||
|
||
## [0.0.1a8](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a8) (2024-04-05) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a7...0.0.1a8) | ||
|
||
**Implemented enhancements:** | ||
|
||
- \[FEAT\] Automate node image building [\#4](https://github.com/NeonGeckoCom/neon-nodes/issues/4) | ||
|
||
**Merged pull requests:** | ||
|
||
- Pin upper limit for numpy compat. [\#12](https://github.com/NeonGeckoCom/neon-nodes/pull/12) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a7](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a7) (2024-02-28) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a6...0.0.1a7) | ||
|
||
**Merged pull requests:** | ||
|
||
- Update dependencies to stable or pinned alpha specs [\#11](https://github.com/NeonGeckoCom/neon-nodes/pull/11) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a6](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a6) (2024-02-28) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a5...0.0.1a6) | ||
|
||
**Merged pull requests:** | ||
|
||
- Fix event passed to neon-os build [\#10](https://github.com/NeonGeckoCom/neon-nodes/pull/10) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a5](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a5) (2024-02-28) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a4...0.0.1a5) | ||
|
||
**Merged pull requests:** | ||
|
||
- Add token to trigger NeonOS build [\#9](https://github.com/NeonGeckoCom/neon-nodes/pull/9) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a4](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a4) (2024-02-28) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a3...0.0.1a4) | ||
|
||
**Merged pull requests:** | ||
|
||
- Fixes syntax error in test build automation [\#8](https://github.com/NeonGeckoCom/neon-nodes/pull/8) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add automation to trigger a Neon OS build on push to `dev` [\#6](https://github.com/NeonGeckoCom/neon-nodes/pull/6) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a3](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a3) (2024-02-08) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/0.0.1a2...0.0.1a3) | ||
|
||
**Merged pull requests:** | ||
|
||
- Fix GitHub Automation [\#3](https://github.com/NeonGeckoCom/neon-nodes/pull/3) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.1a2](https://github.com/NeonGeckoCom/neon-nodes/tree/0.0.1a2) (2024-02-08) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-nodes/compare/3b96078f255fadc0071181acf1b1a4a041b1fa24...0.0.1a2) | ||
|
||
**Merged pull requests:** | ||
|
||
- Initial implementation with NeonVoiceClient [\#1](https://github.com/NeonGeckoCom/neon-nodes/pull/1) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
|
||
|
||
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Development System | ||
# All trademark and other rights reserved by their respective owners | ||
# Copyright 2008-2021 Neongecko.com Inc. | ||
# BSD-3 | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the | ||
following conditions are met: | ||
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following | ||
disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided with the distribution. | ||
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Neon Nodes | ||
Clients for connecting to a server running Hana. These are minimal classes that | ||
are responsible for collecting a user's input, sending it to a remote system for | ||
processing, and presenting a response to the user. | ||
|
||
## Voice Client | ||
The voice client will start a service that listens for a wake word on the local | ||
system, sends recorded speech to a HANA endpoint for processing, and plays back | ||
the response. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Development System | ||
# All trademark and other rights reserved by their respective owners | ||
# Copyright 2008-2021 Neongecko.com Inc. | ||
# BSD-3 | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# 1. Redistributions of source code must retain the above copyright notice, | ||
# this list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from this | ||
# software without specific prior written permission. | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | ||
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
neon_node: | ||
description: Neon Node | ||
microphone: | ||
module: ovos-microphone-plugin-alsa | ||
listener: | ||
wake_word: hey_mycroft | ||
stand_up_word: "" | ||
VAD: | ||
silence_method: vad_only | ||
speech_seconds: 0.1 | ||
silence_seconds: 0.5 | ||
before_seconds: 0.5 | ||
min_seconds: 1 | ||
max_current_ratio_threshold: 2 | ||
initial_energy_threshold: 1000.0 | ||
module: ovos-vad-plugin-silero | ||
mute_during_output: true | ||
instant_listen: false | ||
enable_stt_api: false | ||
# amount of time to wait for speech to start after WW detection | ||
speech_begin: 0.5 | ||
# amount of time without speech to wait before stopping listening | ||
silence_end: 0.9 | ||
# number of audio chunks from WW detection to include in STT audio | ||
utterance_chunks_to_rewind: 1 | ||
wakeword_chunks_to_save: 15 | ||
hotwords: | ||
hey_mycroft: | ||
module: ovos-ww-plugin-precise-lite | ||
model: /opt/neon/hey_mycroft.tflite | ||
expected_duration: 3 | ||
trigger_level: 3 | ||
sensitivity: 0.5 | ||
listen: true | ||
wake_up: | ||
enabled: false | ||
wake_up_vosk: | ||
enabled: false | ||
logs: | ||
path: stdout | ||
level: DEBUG |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework | ||
# All trademark and other rights reserved by their respective owners | ||
# Copyright 2008-2022 Neongecko.com Inc. | ||
# Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds, | ||
# Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo | ||
# BSD-3 License | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# 1. Redistributions of source code must retain the above copyright notice, | ||
# this list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# 3. Neither the name of the copyright holder nor the names of its | ||
# contributors may be used to endorse or promote products derived from this | ||
# software without specific prior written permission. | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, | ||
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
__version__ = "0.0.1" |
Oops, something went wrong.