This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import autogen | |
| config_list = [ | |
| { | |
| 'model': 'gpt-4', | |
| 'api_key': 'API_KEY' | |
| } | |
| ] | |
| llm_config={ |