Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup comments and prep for release #13

Merged
merged 1 commit into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
with:
token: ${{secrets.GITHUB_TOKEN}}
tag: ${{env.VERSION}}
generateReleaseNotes: true
build_and_publish_docker:
uses: neongeckocom/.github/.github/workflows/publish_docker.yml@master
secrets: inherit
4 changes: 2 additions & 2 deletions neon_hana/schema/api_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,11 @@ class ParseScriptRequest(BaseModel):
"no_val_1":
Execute: what time is it

Python: 1*2 # TODO: syntax check
Python: 1*2

LOOP check START
Set: new_val = no_val # This logs an error because it isn't declared
# TODO: The following should warn/error
# The following should warn/error
dne = "test"
voice_input(new_val)
LOOP check END
Expand Down
2 changes: 0 additions & 2 deletions neon_hana/schema/assist_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ class TTSResponse(BaseModel):
}]}}


# TODO: User profile model with below inputs?

class SkillRequest(BaseModel):
utterance: str
lang_code: str
Expand Down
Loading