diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 18e095e..2579bc0 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -15,10 +15,6 @@ on: - main workflow_dispatch: -concurrency: - group: ${{ github.workflow }}-${{ github.ref || github.run_id }} - cancel-in-progress: true - env: NEXT_TELEMETRY_DISABLED: 1 HUSKY: 0 diff --git a/.github/workflows/deploy-main.yaml b/.github/workflows/deploy-main.yaml deleted file mode 100644 index 28a5932..0000000 --- a/.github/workflows/deploy-main.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Deploy main to production - -on: workflow_dispatch - -permissions: - contents: write - -jobs: - deploy_to_prod: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: '0' - - name: Configure git - run: | - git config user.name "GitHub Actions Bot" - git config user.email "actions@github.com" - - name: Fast-forward merge - run: | - git checkout production - git pull origin production - - if git merge --ff-only origin/main; then - git push origin production - echo "Successfully fast-forwarded production to main" - else - echo "Cannot fast-forward merge main into production. Production might have diverged from main." - exit 1 - fi diff --git a/leap/changelog.mdx b/leap/changelog.mdx deleted file mode 100644 index 45b5c4c..0000000 --- a/leap/changelog.mdx +++ /dev/null @@ -1,92 +0,0 @@ ---- -title: "Changelog" ---- - -## August 26, 2025[​](#august-26-2025 "Direct link to August 26, 2025") - -* πŸ“· VLM support - - * 🧠 LFM2-VL models now available in model library - * πŸ“± Edge SDK now accepts image content type as message inputs for LFM2-VL models (v0.5.0 and up) - * πŸ’» Laptop support for LFM2-VL models out-of-the-box - * 🏹 Test LFM2-VL models live in Apollo (v1.1.4 and up) - * πŸ› οΈ Finetuning tools accept LFM2-VL checkpoints for high customization capabilities - * πŸ“¦ Model Bundling Service accepts LFM2-VL finetuned checkpoints for export to Edge SDK - -* πŸ› οΈ Finetuning tools - * Liger kernel now supported out-of-the-box - -## August 18, 2025[​](#august-18-2025 "Direct link to August 18, 2025") - -* πŸ’» Laptop support - - * Native support for laptop and desktop computers for LEAP models via llama.cpp - * Best-in-class performance on AMD Ryzenβ„’ chips - * Examples using language bindings for NodeJS and Python - * See more details [here](/leap/laptop-support) - -* πŸ› οΈ Finetuning tools - * Fixed a bug that caused training to hang unexpectedly - -* πŸ€– Android Edge SDK - * Fixed a bug related to model downloading - -## August 11, 2025[​](#august-11-2025 "Direct link to August 11, 2025") - -* πŸ€– Android Edge SDK - - * Added [function-calling support](/leap/edge-sdk/android/function-calling) to aid in agentic tool-calling - * Update model downloader query result format - -* 🍎 iOS Edge SDK - * Added [function-calling support](/leap/edge-sdk/ios/function-calling) to aid in agentic tool-calling - -## August 4, 2025[​](#august-4-2025 "Direct link to August 4, 2025") - -* πŸ€– Android Edge SDK - * Added [constrained generation support](/leap/edge-sdk/android/constrained-generation) to aid in structured output generation -* 🍎 iOS Edge SDK - * Added [constrained generation support](/leap/edge-sdk/ios/constrained-generation) to aid in structured output generation -* πŸ“¦ Model Bundling Service - * Fixed a bug regarding file upload - -## July 28, 2025[​](#july-28-2025 "Direct link to July 28, 2025") - -* πŸ› οΈ Finetuning tools - - * Initial release of finetuning tools for LFM2 models on ≀ 1 GPU (Google Colab notebooks) and > 1 GPU (`leap-finetune`) - * See more details [here](/leap/finetuning) - -* πŸ“¦ Model Bundling Service - - * Use the Finetuning customization tools described above along with `leap-bundle` to develop and deploy finetuned LEAP models on the edge - * CLI-based service to create model bundles for usage within the Edge SDK - currently supports any model architecture within the LEAP [model library](https://leap.liquid.ai/models) - * See more details [here](/leap/leap-bundle/quick-start) - -* πŸ€– Android Edge SDK - - * Features - - * Added `ModelLoadingOptions` and `GenerationOptions` for more finegrained control over generation and loading options - * Exposed model ID via `ModelRunner.modelId` - * Exposed generation statistics via `stats` field on `MessageResponse.Complete` - * Added Model Downloader module to simplify model fetching in prototypes and development; see details [here](/leap/edge-sdk/android/android-api-spec#model-downloader) - - * πŸ› Bug fixes - - * Added Proguard rules to preserve inference engine class names and prevent obfuscation issues. - * If the generation content hits the maximum context length, `finishReason` field of `MessageResponse.Complete` will be `EXCEED_CONTEXT`. If the prompt exceeds the context length, `LeapGenerationPromptExceedContextLengthException` will be thrown. - -* 🍎 iOS Edge SDK - - * Features - - * Added `ModelLoadingOptions` and `GenerationOptions` for more finegrained control over generation and loading options - * Exposed model ID via `ModelRunner.modelId` - * Exposed generation statistics via `stats` field on `MessageResponse.Complete` - * Added `LeapModelDownloader` module to simplify model fetching in prototypes and development - - * πŸ› Bug fixes - * If the generation content hits the maximum context length, `finishReason` field of `MessageResponse.Complete` will be `EXCEED_CONTEXT`. If the prompt exceeds the context length, `LeapGenerationPromptExceedContextLengthException` will be thrown. - -[Edit this page](https://github.com/Liquid4All/docs/tree/main/leap/changelog.mdx)