Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/evals.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,11 @@ jobs:

- name: 📦 LLM Cache Status
run: |
diff ./cache-log-pre ./cache-log-post > ./cache-analysis-diff
RESULT=$?
if [ $RESULT -eq 0 ]; then
if diff ./cache-log-pre ./cache-log-post > ./cache-analysis-diff ; then
echo "No new LLM cache entries added!"
else
# `diff` outputs two lines per diff, one for location, one for content
ADDITIONS=$(cat ./cache_analysis-diff | wc -l)
ADDITIONS=$(cat ./cache-analysis-diff | wc -l)
echo "LLM cache has added $((ADDITIONS / 2)) entries."
fi

Expand Down
Loading