This website takes a tweet link and translates it into emojis using GPT3.
The website is hosted on Google Cloud Run. To update, run gcloud run deploy
First set up environment variables using export VARIABLE=<variable>
- you will need API_TOKEN_TWITTER and API_KEY_CHATGPT
This app runs on flask. To test locally run
flask --app server --debug run
If you want to test the docker image locally:
- rebuild with
docker build -t chime-posts - then run with
docker run -p 5001:8080 -e API_TOKEN_TWITTER=<token> -e API_KEY_CHATGPT=<key> chime-posts
It will run at localhost:5001