Skip to content
Snippets Groups Projects
user avatar
Ryan Melvin authored
99defba2

mpog-helper-openai

Uses OpenAI API to determine if a research idea is reasonable and novel for the MPOG database. Not affiliated with MPOG in any way.

Deploy

Docker

Your OpenAI API key must be in .streamlit/secrets.toml

docker build -t streamlit -f deploy/Dockerfile .
docker run -p 8501:8501 streamlit

Then navigate in your browser to localhost:8501

Docker-compose

docker-compose up

You can use the -d flag at the end to runin in detached (background) mode

docker-compose up -d

To stop the app,

docker-compose down