- Create a new directory with these three files (requirements.txt, main.py, README.md)
python -m venv venvsource venv/bin/activatepip install -r requirements.txtpython main.py- Update
main()to run the example prompt chains
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
| const ENABLED = false // Keep this false while testing to verify that it's working correctly | |
| const DELETE_INTERVAL = 1000 // Amount of time in MS to wait between deletion (more likely to fail with a small number) | |
| // This filter should return a boolean (true == delete video, false == keep video) | |
| const MIN_DURATION_MS = 1000 * 60 * 1.5 // 1:30 mins | |
| const SHOULD_DELETE = videoElement => { | |
| try { | |
| // Get the duration string |