Skip to content

Avoid interface since technically it is a keyword #40

Avoid interface since technically it is a keyword

Avoid interface since technically it is a keyword #40

Workflow file for this run

name: Test with PyPy
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 'pypy3.10'
- run: pypy3 --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?' | pypy3 ./ask-llm.py | grep -i jupiter
timeout-minutes: 7
env:
LLM_API_BASE_URL: 'http://127.0.0.1:8080/v1'
LLM_DEBUG: 1