-
Notifications
You must be signed in to change notification settings - Fork 2
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.5a21](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a21) (2023-12-13) [Full Changelog](0.0.5a20...0.0.5a21) **Merged pull requests:** - Update Documentation and Logging [\#48](#48) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.5a20](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a20) (2023-12-13) [Full Changelog](0.0.5a19...0.0.5a20) **Merged pull requests:** - Improved config handling [\#46](#46) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.5a19](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a19) (2023-12-11) [Full Changelog](0.0.5a18...0.0.5a19) **Merged pull requests:** - Update release automation [\#47](#47) ([NeonDaniel](https://github.com/NeonDaniel)) ## [0.0.5a18](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a18) (2023-12-11) [Full Changelog](0.0.4...0.0.5a18) **Implemented enhancements:** - \[FEAT\] Gradio User Settings Intents [\#35](#35) - \[FEAT\] After submitting recorded input audio the UI element should reset [\#30](#30) - \[FEAT\] Speech input should print STT results to the chat UI in addition to response [\#29](#29) **Fixed bugs:** - \[BUG\] Input audio resampling is not efficiently implemented [\#28](#28) - \[BUG\] Implement per-user settings in web UI [\#27](#27) **Merged pull requests:** - Add GitHub pre-release automation [\#45](#45) ([NeonDaniel](https://github.com/NeonDaniel)) - Update neon-mq-connector dependency to stable spec [\#43](#43) ([NeonDaniel](https://github.com/NeonDaniel)) - Minor fixes to audio input handling [\#42](#42) ([NeonDaniel](https://github.com/NeonDaniel)) - Refactor audio responses to utilize Chatbot UI [\#40](#40) ([NeonDaniel](https://github.com/NeonDaniel)) - Get Language Support from Core [\#37](#37) ([NeonDaniel](https://github.com/NeonDaniel)) - Handle profile updates [\#36](#36) ([NeonDaniel](https://github.com/NeonDaniel)) - Handle STT Transcripts in Chat UI [\#34](#34) ([NeonDaniel](https://github.com/NeonDaniel)) - Remove audio resampling and add timing context support [\#33](#33) ([NeonDaniel](https://github.com/NeonDaniel)) - Fix web\_client language handling to respect configured input language [\#32](#32) ([NeonDaniel](https://github.com/NeonDaniel)) - Threaded input handling and multi-session support [\#31](#31) ([NeonDaniel](https://github.com/NeonDaniel)) - Add Gradio web UI with Docker Container [\#24](#24) ([NeonDaniel](https://github.com/NeonDaniel)) - Add NeonVoiceClient class for minimal remote audio client [\#23](#23) ([NeonDaniel](https://github.com/NeonDaniel)) - Resolve client compat. bug [\#22](#22) ([NeonDaniel](https://github.com/NeonDaniel)) - Add CLI endpoints to interact with API and LLM endpoints [\#21](#21) ([NeonDaniel](https://github.com/NeonDaniel)) - Specify `setup.py` path explicitly [\#20](#20) ([NeonDaniel](https://github.com/NeonDaniel)) - Update build automation to default branch [\#19](#19) ([NeonDaniel](https://github.com/NeonDaniel)) - Update to use shared version\_bump.py script [\#18](#18) ([NeonDaniel](https://github.com/NeonDaniel)) - Remove invalid release Docker action [\#17](#17) ([NeonDaniel](https://github.com/NeonDaniel)) - Update automation to shared repository [\#15](#15) ([NeonDaniel](https://github.com/NeonDaniel)) - Add methods with CLI entrypoints to get STT/TTS [\#12](#12) ([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
23 changed files
with
1,168 additions
and
159 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,10 @@ | ||
name: Run License Tests | ||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
license_tests: | ||
uses: neongeckocom/.github/.github/workflows/license_tests.yml@master | ||
with: | ||
packages-exclude: '^(precise-runner|fann2|tqdm|bs4|ovos-phal-plugin|ovos-skill|neon-core|nvidia|neon-phal-plugin|bitstruct|audioread).*' |
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_iris/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
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
This file was deleted.
Oops, something went wrong.
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
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,67 @@ | ||
# Changelog | ||
|
||
## [0.0.5a21](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a21) (2023-12-13) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-iris/compare/0.0.5a20...0.0.5a21) | ||
|
||
**Merged pull requests:** | ||
|
||
- Update Documentation and Logging [\#48](https://github.com/NeonGeckoCom/neon-iris/pull/48) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.5a20](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a20) (2023-12-13) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-iris/compare/0.0.5a19...0.0.5a20) | ||
|
||
**Merged pull requests:** | ||
|
||
- Improved config handling [\#46](https://github.com/NeonGeckoCom/neon-iris/pull/46) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.5a19](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a19) (2023-12-11) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-iris/compare/0.0.5a18...0.0.5a19) | ||
|
||
**Merged pull requests:** | ||
|
||
- Update release automation [\#47](https://github.com/NeonGeckoCom/neon-iris/pull/47) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
## [0.0.5a18](https://github.com/NeonGeckoCom/neon-iris/tree/0.0.5a18) (2023-12-11) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-iris/compare/0.0.4...0.0.5a18) | ||
|
||
**Implemented enhancements:** | ||
|
||
- \[FEAT\] Gradio User Settings Intents [\#35](https://github.com/NeonGeckoCom/neon-iris/issues/35) | ||
- \[FEAT\] After submitting recorded input audio the UI element should reset [\#30](https://github.com/NeonGeckoCom/neon-iris/issues/30) | ||
- \[FEAT\] Speech input should print STT results to the chat UI in addition to response [\#29](https://github.com/NeonGeckoCom/neon-iris/issues/29) | ||
|
||
**Fixed bugs:** | ||
|
||
- \[BUG\] Input audio resampling is not efficiently implemented [\#28](https://github.com/NeonGeckoCom/neon-iris/issues/28) | ||
- \[BUG\] Implement per-user settings in web UI [\#27](https://github.com/NeonGeckoCom/neon-iris/issues/27) | ||
|
||
**Merged pull requests:** | ||
|
||
- Add GitHub pre-release automation [\#45](https://github.com/NeonGeckoCom/neon-iris/pull/45) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Update neon-mq-connector dependency to stable spec [\#43](https://github.com/NeonGeckoCom/neon-iris/pull/43) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Minor fixes to audio input handling [\#42](https://github.com/NeonGeckoCom/neon-iris/pull/42) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Refactor audio responses to utilize Chatbot UI [\#40](https://github.com/NeonGeckoCom/neon-iris/pull/40) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Get Language Support from Core [\#37](https://github.com/NeonGeckoCom/neon-iris/pull/37) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Handle profile updates [\#36](https://github.com/NeonGeckoCom/neon-iris/pull/36) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Handle STT Transcripts in Chat UI [\#34](https://github.com/NeonGeckoCom/neon-iris/pull/34) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Remove audio resampling and add timing context support [\#33](https://github.com/NeonGeckoCom/neon-iris/pull/33) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Fix web\_client language handling to respect configured input language [\#32](https://github.com/NeonGeckoCom/neon-iris/pull/32) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Threaded input handling and multi-session support [\#31](https://github.com/NeonGeckoCom/neon-iris/pull/31) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add Gradio web UI with Docker Container [\#24](https://github.com/NeonGeckoCom/neon-iris/pull/24) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add NeonVoiceClient class for minimal remote audio client [\#23](https://github.com/NeonGeckoCom/neon-iris/pull/23) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Resolve client compat. bug [\#22](https://github.com/NeonGeckoCom/neon-iris/pull/22) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add CLI endpoints to interact with API and LLM endpoints [\#21](https://github.com/NeonGeckoCom/neon-iris/pull/21) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Specify `setup.py` path explicitly [\#20](https://github.com/NeonGeckoCom/neon-iris/pull/20) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Update build automation to default branch [\#19](https://github.com/NeonGeckoCom/neon-iris/pull/19) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Update to use shared version\_bump.py script [\#18](https://github.com/NeonGeckoCom/neon-iris/pull/18) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Remove invalid release Docker action [\#17](https://github.com/NeonGeckoCom/neon-iris/pull/17) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Update automation to shared repository [\#15](https://github.com/NeonGeckoCom/neon-iris/pull/15) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add methods with CLI entrypoints to get STT/TTS [\#12](https://github.com/NeonGeckoCom/neon-iris/pull/12) ([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 @@ | ||
FROM python:3.8-slim | ||
|
||
LABEL vendor=neon.ai \ | ||
ai.neon.name="neon-iris" | ||
|
||
ENV OVOS_CONFIG_BASE_FOLDER neon | ||
ENV OVOS_CONFIG_FILENAME neon.yaml | ||
ENV XDG_CONFIG_HOME /config | ||
|
||
RUN apt update && \ | ||
apt install -y ffmpeg | ||
|
||
ADD . /neon_iris | ||
WORKDIR /neon_iris | ||
|
||
RUN pip install wheel && \ | ||
pip install .[gradio] | ||
|
||
COPY docker_overlay/ / | ||
|
||
CMD ["iris", "start-gradio"] |
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
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,46 @@ | ||
MQ: | ||
server: neon-rabbitmq | ||
port: 5672 | ||
users: | ||
mq_handler: | ||
user: neon_api_utils | ||
password: Klatchat2021 | ||
iris: | ||
webui_title: Neon AI | ||
webui_description: Chat with Neon | ||
webui_input_placeholder: Ask me something | ||
webui_chatbot_label: Chat History | ||
webui_mic_label: Speak to Neon | ||
webui_text_label: Text with Neon | ||
server_address: "0.0.0.0" | ||
server_port: 7860 | ||
default_lang: en-us | ||
enable_lang_api: True | ||
|
||
location: | ||
city: | ||
code: Renton | ||
name: Renton | ||
state: | ||
code: WA | ||
name: Washington | ||
country: | ||
code: US | ||
name: United States | ||
coordinate: | ||
latitude: 47.482880 | ||
longitude: -122.217064 | ||
timezone: | ||
code: America/Los_Angeles | ||
name: Pacific Standard Time | ||
dstOffset: 3600000 | ||
offset: -28800000 | ||
|
||
logs: | ||
name: iris | ||
level: INFO | ||
level_overrides: | ||
error: | ||
- pika | ||
warning: | ||
- filelock |
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
Oops, something went wrong.