An LLM evaluation tool that uses a model-to-model qualitative comparison metric.
For local development, copy the .env.template
file to a .env
file in the project root directory. Then create a local PosgreSQL database:
psql -c "CREATE DATABASE parlance WITH OWNER django"
Apply the database migrations (which you may need to do routinely as migrations change):
python manage.py migrate
Then run the local server:
python manage.py runserver
You should be able to open the web app at localhost:8000.