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

Add ability to switch output languages for multilingual models #69 #72

Closed
wants to merge 27 commits into from
Closed
Show file tree
Hide file tree
Changes from 14 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
34 changes: 34 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: TestPyPI Publish

on:
push:
branches:
- main

jobs:
test_pypi_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
pip install pipenv
pipenv install twine

- name: Build and Publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
REPOSITORY_URL: https://test.pypi.org/legacy/
run: |
python setup.py sdist bdist_wheel
pipenv run twine upload --repository-url $REPOSITORY_URL dist/*
237 changes: 0 additions & 237 deletions examples/demo/silero_vad.py

This file was deleted.

75 changes: 0 additions & 75 deletions examples/speech_to_speech/english_counter_agent.py

This file was deleted.

10 changes: 0 additions & 10 deletions examples/speech_to_speech_demo/english_counter_pipeline.py

This file was deleted.

11 changes: 0 additions & 11 deletions examples/speech_to_speech_demo/readme.md

This file was deleted.

Loading
Loading