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.9.1
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.9.2
Choose a head ref
  • 4 commits
  • 20 files changed
  • 2 contributors

Commits on Jun 22, 2026

  1. chore(deps): bump fastembed from 5.16.1 to 5.17.2 (#43)

    Bumps [fastembed](https://github.com/Anush008/fastembed-rs) from 5.16.1 to 5.17.2.
    - [Release notes](https://github.com/Anush008/fastembed-rs/releases)
    - [Commits](Anush008/fastembed-rs@v5.16.1...v5.17.2)
    
    ---
    updated-dependencies:
    - dependency-name: fastembed
      dependency-version: 5.17.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 22, 2026
    Configuration menu
    Copy the full SHA
    bf0bd94 View commit details
    Browse the repository at this point in the history
  2. ci(deps): bump actions/checkout from 6 to 7 (#42)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v6...v7)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '7'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 22, 2026
    Configuration menu
    Copy the full SHA
    33bdd93 View commit details
    Browse the repository at this point in the history
  3. fix(llm)!: add Default + struct-update-friendly builders to stop brea…

    …king downstream on field additions
    
    LLMRequest/LLMResponse/ChatMessage now implement Default. The forward-compatible
    construction pattern is struct-update: LLMRequest { system: Some(..), ..LLMRequest::default() },
    which absorbs future additive fields without breaking call sites (unlike full struct
    literals, which broke fmemory/knowledge-forge/research-agent when response_format/tools
    were added in 0.9.0).
    
    LLMRequestBuilder gains messages(Vec<ChatMessage>) and maybe_max_tokens(Option<u32>)
    setters so downstream holding a config Option or pre-built conversation can use the
    builder without conditional chains.
    
    LLMRequest::default() uses temperature: 0.7 to match the builder's unwrap_or(0.7);
    default_matches_builder_default test couples the two.
    
    All LLMRequest examples in README, QUICKSTART, the 10 i18n READMEs, and examples/
    migrated to struct-update.
    epicsagas committed Jun 22, 2026
    Configuration menu
    Copy the full SHA
    7402beb View commit details
    Browse the repository at this point in the history
  4. chore: bump v0.9.2

    epicsagas committed Jun 22, 2026
    Configuration menu
    Copy the full SHA
    abd37c0 View commit details
    Browse the repository at this point in the history
Loading