We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dda44b4 commit f498d77Copy full SHA for f498d77
1 file changed
.github/workflows/verify.yml
@@ -28,4 +28,19 @@ jobs:
28
run: roast . --no-llm --max-files 10
29
30
- name: CLI smoke test (GitHub URL path)
31
- run: roast https://github.com/psf/requests --no-llm --max-files 10
+ run: roast https://github.com/psf/requests --no-llm --max-files 10
32
+
33
+ - name: CLI smoke test (LLM: Groq primary + NIM backup)
34
+ env:
35
+ GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
36
+ NVIDIA_NIM_API_KEY: ${{ secrets.NVIDIA_NIM_API_KEY }}
37
+ run: |
38
+ if [ -z "$GROQ_API_KEY" ] && [ -z "$NVIDIA_NIM_API_KEY" ]; then
39
+ echo "No LLM secrets configured; skipping LLM smoke test."
40
+ exit 0
41
+ fi
42
+ roast . --max-files 8 \
43
+ --provider auto \
44
+ --model llama-3.3-70b-versatile \
45
+ --backup-provider nim \
46
+ --backup-model microsoft/phi-4-mini-instruct
0 commit comments