ChatGPT-3 Translate
An example of how to translate the default output language as another language (English to Spanish in this case).
This project use a speech recognition.
Installation (Recommended)
First, install a virtual environment on:
Windows:
pip install virtualenvLinux (Debian based):
pip3 install virtualenv
sudo apt-get install python3-venvNow, build a local virtual environment:
Windows:
python -m venv "gpt3"Linux (Debian based):
python3 -m venv "gpt3"Clone the repo with:
git clone https://github.com/m0rniac/GPT-3-SpanishNow, move the content of cloned repo inside "gpt3" folder and install the dependencies with:
Windows:
cd gpt3
.\Scripts\activate
pip install -r requirements.txtLinux (Debian based):
cd gpt3/
source bin/activate
pip3 install -r requirements.txtAfter all, you can run:
python main.pyor
python3 main.py