Fix longstnading bug in wrapper. Add handling to allow for duplicate events to be handelled. Remove analysis script (will replace with more indepth work in main frontend)

This commit is contained in:
William Jeynes
2026-02-22 23:12:14 +00:00
parent 4d92f14527
commit cca3c42f5b
5 changed files with 95 additions and 117 deletions
+1 -7
View File
@@ -32,21 +32,15 @@ run_wrapper () {
npm run dev
}
run_analysis () {
cd supporting/scorer
python analyse.py
}
case "$1" in
agent) run_agent ;;
ragas_service) run_ragas_service ;;
frontend) run_frontend ;;
fetch) run_fetch ;;
wrapper) run_wrapper ;;
analysis) run_analysis ;;
*)
echo "Unknown command: $1"
echo "Usage: ./runproject [agent|ragas_service|frontend|fetch|wrapper|analysis]"
echo "Usage: ./runproject [agent|ragas_service|frontend|fetch|wrapper]"
exit 1
;;
esac