Skip to content

Instantly share code, notes, and snippets.

View dominic-sylvester's full-sized avatar

Dominic Sylvester dominic-sylvester

View GitHub Profile
@mberman84
mberman84 / gist:35ea386df3e2d0054ba370d388f43710
Created November 22, 2023 17:26
Voice Cloning for Narration
git clone https://github.com/cbh123/narrator
cd narrator
conda create -n narrator python=3.11
conda activate narrator
which python
python -m pip install -r requirements.txt
export ELEVENLABS_API_KEY={key}
export OPENAI_API_KEY={key}
python capture.py
# open new terminal
import autogen
config_list = [
{
'model': 'gpt-4',
'api_key': 'API_KEY'
}
]
llm_config={