Uses AI to identify claims made in media.
John is recommended a youtube video by Jane, but he knows that the videos Jane watches are sometimes full of made up facts. Using source.me, John can generate a list of the claims which the video makes, and see what Google thinks the sources to those claims are.
- create
keys.env
file- reach out to the code owner for instructions.
- Setup Python Env
- run
python -m venv .venv
to create a virtual env - run
source .venv/bin/activate
to source from it (note: if you are using vscode there should be a alert which pops up allowing you to source from it) - run
pip install -r src/requirements.txt
- run
- run
pip install -r test/requirements.txt
- run
pytest
Whenever you push code, there should be a linter check which runs.
If that check fails you should simply be able to run black . && isort .
to resolve it. These commands automatically format your code.