Compare commits

...

2 Commits

Author SHA1 Message Date
Václav Volhejn
e497a53f0b Remove intentional error 2025-07-07 18:05:05 +02:00
Václav Volhejn
2683557584 fix and break 2025-07-07 18:03:11 +02:00
2 changed files with 5 additions and 3 deletions

View File

@ -13,5 +13,5 @@ jobs:
- uses: actions/checkout@v2
- uses: ./.github/actions/moshi_build
- run: |
. env/bin/activate
bash .git/hooks/pre-commit
source env/bin/activate
pre-commit run --all-files

View File

@ -101,7 +101,9 @@ def main():
callback=audio_callback,
):
with tts_model.mimi.streaming(1):
tts_model.generate([entries], [condition_attributes], on_frame=_on_frame)
tts_model.generate(
[entries], [condition_attributes], on_frame=_on_frame
)
time.sleep(3)
while True:
if pcms.qsize() == 0: