Skip to content

Commit

Permalink
Added script to setup venv
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewcoole committed Dec 5, 2024
1 parent 38be3c9 commit dfeb31f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup-venv.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

#Delete the existing .venv directory
VENV=".venv"
if [ -d "$VENV" ]; then
echo "$VENV exists. Deleting..."
rm -rf "$VENV"
fi

#Create a new virtual environment
python3 -m venv .venv

#Activate the virtual environment
source .venv/bin/activate

#Install the required packages
pip install -e ".[dev]"

1 comment on commit dfeb31f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

context_recall: 0.5030964559416718
answer_relevancy: 0.5018282550783701
answer_correctness: 0.4816697944703682
context_precision: 0.542821425882

Please sign in to comment.