- Install dependencies with
pip install -r requirements.txt
- Run MindFort with
python app.py
- Navigate to
http://127.0.0.1:8000
- Obtain and enter your OpenAI API key
- Follow the on-screen instructions to load your input data, your codeset, perform coding and analyse your results
- Find your results in the
/output
folder and on-screen. The used prompts are also saved in/output/prompts.csv
With any questions, feel free to contact me at [email protected]
If you prefer to run MindFort as a docker container, you can build the image and run it as follows:
- Build image with
docker build --tag mindfort .
- Run image with
docker run -d -p 8000:5000 mindfort
where 8000 is the port you will access the application athttp://127.0.0.1:8000