Add fine-tuned model section to README #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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')" |