Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

fix:allow b64 by default #96

Merged
merged 2 commits into from
Oct 23, 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
2 changes: 2 additions & 0 deletions hivemind_core/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ def __init__(
"recognizer_loop:record_end",
"recognizer_loop:audio_output_start",
"recognizer_loop:audio_output_end",
'recognizer_loop:b64_transcribe',
'speak:b64_audio',
"ovos.common_play.SEI.get.response"]
if "recognizer_loop:utterance" not in self.allowed_types:
self.allowed_types.append("recognizer_loop:utterance")
Expand Down
8 changes: 4 additions & 4 deletions hivemind_core/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ def hmcore_cmds():


@hmcore_cmds.command(help="add credentials for a client", name="add-client")
@click.argument("name", required=False, type=str)
@click.argument("access_key", required=False, type=str)
@click.argument("password", required=False, type=str)
@click.argument("crypto_key", required=False, type=str)
@click.option("--name", required=False, type=str)
@click.option("--access-key", required=False, type=str)
@click.option("--password", required=False, type=str)
@click.option("--crypto-key", required=False, type=str)
def add_client(name, access_key, password, crypto_key):
key = crypto_key
if key:
Expand Down
Loading