Skip to content

Commit

Permalink
Test with Groq
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed May 12, 2024
1 parent 39f4e8c commit 8ba8423
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test-groq.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test on Groq

on:
push:
branches: [main]

jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '18'

- run: echo 'Which planet in our solar system is the largest?' | ./ask-llm.js | tee output.txt | grep -i jupiter
timeout-minutes: 3
env:
LLM_API_BASE_URL: 'https://api.groq.com/openai/v1'
LLM_API_KEY: ${{ secrets.GROQ_API_KEY }}
LLM_CHAT_MODEL: 'llama3-8b-8192'

- run: cat output.txt

0 comments on commit 8ba8423

Please sign in to comment.