Skip to content

Update README for Jan #36

Update README for Jan

Update README for Jan #36

Workflow file for this run

name: Test with Babashka
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Babashka
run: curl -OL https://raw.githubusercontent.com/babashka/babashka/master/install && bash ./install
- run: bb --version
- name: Prepare LLM (Phi-3 Mini)
uses: ./.github/actions/prepare-llm
timeout-minutes: 3
- run: echo 'Which planet in our solar system is the largest?' | ./ask-llm.clj | grep -i jupiter
timeout-minutes: 7
env:
LLM_API_BASE_URL: 'http://127.0.0.1:8080/v1'
LLM_DEBUG: 1