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: marcominerva/SqlDatabaseVectorSearch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: marcominerva/SqlDatabaseVectorSearch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sql
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 8 files changed
  • 1 contributor

Commits on Oct 31, 2024

  1. Update README: Add note on vector storage with Dapper

    The README.md file has been updated to include a new note about how vectors are saved and retrieved using direct SQL queries with Dapper. Additionally, it provides a link to the master branch for those who prefer to use Entity Framework Core instead. This addition helps clarify the technologies used and offers options for different preferences.
    marcominerva committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    1fc6d3c View commit details
    Browse the repository at this point in the history
  2. Clarify Vector support requirements in README.md

    Expanded the Vector support requirement to include both Azure SQL Database and Managed Instance, both currently in EAP. Improved wording for clarity in the note about using direct SQL queries with Dapper.
    marcominerva committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    6c5292d View commit details
    Browse the repository at this point in the history
  3. Fix hyperlink to master branch in README.md

    Corrected the URL in README.md to point to the master branch for using Entity Framework Core, ensuring users are directed to the correct branch.
    marcominerva committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    017dda0 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Update README: clarify use of Dapper and EF Core

    Revised the application description in README.md to specify the use of direct SQL queries with Dapper for saving and retrieving Vectors. The note about using Entity Framework Core has been moved and rephrased for better clarity.
    marcominerva committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    c8c989b View commit details
    Browse the repository at this point in the history
  2. Update Microsoft.SemanticKernel to v1.26.0

    The Microsoft.SemanticKernel package reference in the SqlDatabaseVectorSearch.csproj file has been updated from version 1.25.0 to 1.26.0.
    marcominerva committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    091f76e View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Change ChatService to singleton, update package version

    - Changed ChatService registration in Program.cs to singleton.
    - Reformatted ChatHistory initialization in ChatService.cs.
    - Modified prompt construction to avoid new lines after chunks.
    - Updated Microsoft.SemanticKernel package to version 1.27.0.
    marcominerva committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    29b8ebe View commit details
    Browse the repository at this point in the history
  2. Rename 'result' to 'text' in foreach loop for clarity

    The variable name `result` in the `foreach` loop has been changed to `text` for better clarity and consistency. This change affects the loop that appends chunks to the `prompt` variable.
    marcominerva committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    6c423fb View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Update README.md and modify prompt logic in ChatService

    README.md: Updated links to 'sql' branch and corrected property name.
    ChatService.cs: Changed prompt separators for better clarity.
    marcominerva committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    3373fa4 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. Update code style, ChatService, VectorSearch, and .NET 9.0

    Updated .editorconfig with new code style preferences.
    Enhanced ChatService prompt string with a new directive.
    Modified VectorSearchService using directives and tuple order.
    Upgraded SqlDatabaseVectorSearch to target .NET 9.0 and updated packages.
    marcominerva committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    aadab97 View commit details
    Browse the repository at this point in the history
  2. Update Microsoft.SemanticKernel to 1.30.0

    Updated the Microsoft.SemanticKernel package from version 1.27.0 to 1.30.0 in the SqlDatabaseVectorSearch.csproj file. This update may include bug fixes, new features, or other improvements.
    marcominerva committed Nov 21, 2024
    Configuration menu
    Copy the full SHA
    2c5c164 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2024

  1. Update package versions and add new TinyHelpers reference

    Updated Microsoft.SemanticKernel to 1.31.0, Swashbuckle.AspNetCore to 7.1.0, and TinyHelpers.AspNetCore to 4.0.4. Added new package reference for TinyHelpers.AspNetCore.Swashbuckle version 4.0.5.
    marcominerva committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    2b669c1 View commit details
    Browse the repository at this point in the history
  2. Update TinyHelpers.AspNetCore to version 4.0.5

    The version of the `TinyHelpers.AspNetCore` package has been updated from `4.0.4` to `4.0.5` in the `SqlDatabaseVectorSearch.csproj` file. This update likely includes bug fixes, improvements, or new features provided in the newer version of the package.
    marcominerva committed Dec 4, 2024
    Configuration menu
    Copy the full SHA
    09cd5cb View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2024

  1. Switch to OpenAPI and hybrid caching mechanism

    Updated Program.cs to use TinyHelpers.AspNetCore.OpenApi and Microsoft.Extensions.Caching.Hybrid. Refactored ChatService.cs to use HybridCache for chat history management. Removed MessageLimit property from AppSettings.cs and appsettings.json. Updated SqlDatabaseVectorSearch.csproj to include new caching package and replace Swagger with Swagger UI.
    marcominerva committed Dec 10, 2024
    Configuration menu
    Copy the full SHA
    33c8fcb View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2024

  1. Update package versions in SqlDatabaseVectorSearch.csproj

    Updated Swashbuckle.AspNetCore.SwaggerUI from 7.1.0 to 7.2.0.
    Updated TinyHelpers.AspNetCore from 4.0.5 to 4.0.6.
    These updates likely include bug fixes, performance improvements,
    or new features.
    marcominerva committed Dec 11, 2024
    Configuration menu
    Copy the full SHA
    fad66a2 View commit details
    Browse the repository at this point in the history
Loading