Skip to content

Commit

Permalink
make sure IS_DEV var is there
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkennedy5 committed Mar 19, 2024
1 parent b72d22d commit ef76ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openduck-py/openduck_py/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
EMB_MATCH_THRESHOLD = 0.5
WS_SAMPLE_RATE = 16_000
OUTPUT_SAMPLE_RATE = 24_000
IS_DEV = bool(os.environ.get("IS_DEV", True))
IS_DEV = bool(os.environ["IS_DEV"])
ML_API_URL = os.environ["ML_API_URL"]
# Set to 1024 for the esp32, but larger CHUNK_SIZE is needed to prevent choppiness with the local client
CHUNK_SIZE = 10240
Expand Down

0 comments on commit ef76ed5

Please sign in to comment.