Skip to content

Update fine-tuning model reference in README #7

Update fine-tuning model reference in README

Update fine-tuning model reference in README #7

name: Verify Installation
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install LEMA
run: |
pip install .
- name: Verify Import
run: |
python -c "from lema.config import LemaConfig; print('LEMA Config imported successfully')"
python -c "from lema.models.llama import LlamaAdapter; print('LEMA LlamaAdapter imported successfully')"