Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: epicsagas/llm-kernel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.0
Choose a base ref
...
head repository: epicsagas/llm-kernel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.12.0
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Jul 2, 2026

  1. fix(embedding): drop ort-load-dynamic and make LazyFastembed panic-sa…

    …fe (#50) (#51)
    
    * fix(embedding): drop ort-load-dynamic and make LazyFastembed panic-safe (#50)
    
    - Stop enabling ort-load-dynamic on the Linux/Windows fastembed target dep.
      It forwards to ort-sys/disable-linking, which skips the static-archive
      download step, making ort-download-binaries a silent no-op and leaving the
      binary expecting libonnxruntime.so at runtime -> silent deadlock on first
      .embed(). Default build now statically links ONNX Runtime.
    - Wrap FastembedProvider::new in catch_unwind so a panicking ONNX init
      transitions ModelState::Failed and notifies all Condvar waiters, instead
      of wedging concurrent callers forever.
    
    * fix(embedding): restore opt-in dynamic ONNX linking, qualify panic-safety claim
    
    - Re-add ort-load-dynamic as opt-in embedding-fastembed-dynamic-linking
      feature; static linking alone doesn't satisfy glibc <2.38 Linux hosts
      (the original reason ort-load-dynamic existed, per #50)
    - CHANGELOG: scope the catch_unwind panic-safety guarantee to unwinding
      builds — this crate's own panic = "abort" release profile can't catch
      panics, so a panicking init still aborts in release builds
    - ModelState::Failed now carries a panicked flag (is_panic()) so callers
      can distinguish a panic-origin failure from an ordinary load error
    - Add LazyFastembedProvider::reset() so a Failed provider can retry
      instead of being permanently stuck
    epicsagas authored Jul 2, 2026
    Configuration menu
    Copy the full SHA
    c3f808a View commit details
    Browse the repository at this point in the history
  2. chore: bump v0.12.0

    epicsagas committed Jul 2, 2026
    Configuration menu
    Copy the full SHA
    40990fb View commit details
    Browse the repository at this point in the history
Loading