We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6d7c7 commit f5f7dadCopy full SHA for f5f7dad
.github/workflows/evals.yml
@@ -151,13 +151,11 @@ jobs:
151
152
- name: 📦 LLM Cache Status
153
run: |
154
- diff ./cache-log-pre ./cache-log-post > ./cache-analysis-diff
155
- RESULT=$?
156
- if [ $RESULT -eq 0 ]; then
+ if diff ./cache-log-pre ./cache-log-post > ./cache-analysis-diff ; then
157
echo "No new LLM cache entries added!"
158
else
159
# `diff` outputs two lines per diff, one for location, one for content
160
- ADDITIONS=$(cat ./cache_analysis-diff | wc -l)
+ ADDITIONS=$(cat ./cache-analysis-diff | wc -l)
161
echo "LLM cache has added $((ADDITIONS / 2)) entries."
162
fi
163
0 commit comments