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: microsoft/kernel-memory
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: packages-0.96.250120.1
Choose a base ref
...
head repository: microsoft/kernel-memory
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: packages-0.97.250211.1
Choose a head ref
  • 14 commits
  • 140 files changed
  • 3 contributors

Commits on Jan 20, 2025

  1. Multi-arch dockerization (#984)

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    fa12c93 View commit details
    Browse the repository at this point in the history
  2. Update docker-multiarch.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    7caf4e4 View commit details
    Browse the repository at this point in the history
  3. Update docker-amd64.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    31cfbcd View commit details
    Browse the repository at this point in the history
  4. Update docker-amd64.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    44238ba View commit details
    Browse the repository at this point in the history
  5. Update docker-amd64.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    98ffa2d View commit details
    Browse the repository at this point in the history
  6. Update docker-multiarch.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    616df42 View commit details
    Browse the repository at this point in the history
  7. Update docker-multiarch.yml

    dluc authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    068d347 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    32f5a59 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2025

  1. Update discord example (#988)

    * Update packages
    * Fix postgres dependency injection
    * Update WebApplicationBuilderExtensions extension
    dluc authored Jan 28, 2025
    Configuration menu
    Copy the full SHA
    2681a9b View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2025

  1. New chunking classes (#996)

    The original chunkers ported from SK had some bugs introduced while
    refactoring, leading to incorrect split. This is a full rewrite
    following the original logic, with some changes:
    - remove `MaxTokensPerLine` setting
    - overlap doesn't use sentences anymore, and copy raw tokens from the
    previous chunk instead
    - markdown chunker uses better splitting logic, although it should be
    rewritten to use a markdown parser
    - chunkers now work with a Chunk class which is used also by the file
    parsers. This will allow to port properties from files to chunks, such
    as page number and other metadata
    - chunkers now take a dependency on tokenizers directly, rather than
    just TokenCount
    - chunkers are now out of Core and into a dedicated nuget, for future
    reuse outside KM
    dluc authored Feb 6, 2025
    Configuration menu
    Copy the full SHA
    a490102 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2025

  1. Normalize text new line to Unix-style (#998)

    Make text more consistent across Unix and Windows environments, avoiding
    the `\r` character in favor of the Unix new line ending.
    
    See https://github.com/microsoft/kernel-memory/issues/975
    dluc authored Feb 7, 2025
    Configuration menu
    Copy the full SHA
    e49783a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9bcbb07 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2025

  1. Upgrade dependencies (#1000)

    dluc authored Feb 10, 2025
    Configuration menu
    Copy the full SHA
    4679df9 View commit details
    Browse the repository at this point in the history
  2. Replaced MongoDB.Driver.GridFS with MongoDB.Driver (#991)

    ## Motivation and Context (Why the change? What's the scenario?)
    
    Fixing issue #989 
    
    MongoDB.Driver.GridFS is now part of MongoDB.Driver. So this change is
    simply to now use MongoDB.Driver instead of the deprecated
    MongoDB.Driver.GridFS.
    With these changes, users can now use the latest version of
    MongoDB.Driver which in turn allows them to use MongoDB v8.0.
    
    ## High level description (Approach, Design)
    This is just replacing a deprecated library with the new one.
    
    Co-authored-by: Olawale Adeleye <olawale.adeleye@hotmail.com>
    Co-authored-by: Devis Lucato <dluc@users.noreply.github.com>
    3 people authored Feb 10, 2025
    Configuration menu
    Copy the full SHA
    e931118 View commit details
    Browse the repository at this point in the history
Loading