Merge branch 'main' into feat-sarcastic-code-reviewer
This commit is contained in:
commit
1ae0f0b140
|
@ -1,6 +1,7 @@
|
|||
.env
|
||||
/venv
|
||||
/frames
|
||||
/narration
|
||||
/screeshots
|
||||
.vscode
|
||||
/frames/*
|
||||
|
||||
|
|
|
@ -1,12 +1,14 @@
|
|||
# sarcastic narrator
|
||||
Sarcastic David Attenborough narrates what you are doing based on your screen
|
||||
|
||||
|
||||
Forked from this project:
|
||||
### Forked from this project:
|
||||
https://github.com/cbh123/narrator
|
||||
David Attenborough narrates your life.
|
||||
https://twitter.com/charliebholtz/status/1724815159590293764
|
||||
|
||||
## Want to make your own AI app?
|
||||
Check out [Replicate](https://replicate.com). We make it easy to run machine learning models with an API.
|
||||
|
||||
## Setup
|
||||
|
||||
Clone this repo, and setup and activate a virtualenv:
|
||||
|
@ -20,7 +22,7 @@ source venv/bin/activate
|
|||
Then, install the dependencies:
|
||||
`pip install -r requirements.txt`
|
||||
|
||||
Make an OpenAI and ElevenLabs (https://elevenlabs.io) account and set your tokens:
|
||||
Make a [Replicate](https://replicate.com), [OpenAI](https://beta.openai.com/), and [ElevenLabs](https://elevenlabs.io) account and set your tokens:
|
||||
|
||||
```
|
||||
export OPENAI_API_KEY=<token>
|
||||
|
|
|
@ -21,6 +21,7 @@ openai==1.1.1
|
|||
opencv-python==4.8.1.78
|
||||
parso==0.8.3
|
||||
pexpect==4.8.0
|
||||
Pillow==10.1.0
|
||||
prompt-toolkit==3.0.41
|
||||
ptyprocess==0.7.0
|
||||
pure-eval==0.2.2
|
||||
|
@ -28,6 +29,7 @@ pydantic==2.4.2
|
|||
pydantic_core==2.10.1
|
||||
Pygments==2.16.1
|
||||
requests==2.31.0
|
||||
simpleaudio==1.0.4
|
||||
six==1.16.0
|
||||
sniffio==1.3.0
|
||||
stack-data==0.6.3
|
||||
|
|
Loading…
Reference in New Issue