Skip to content

Add fine-tuned model section to README #6

Add fine-tuned model section to README

Add fine-tuned model section to README #6

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')"