Clarify SQL Server support, improve docs and UI text

Updated documentation and UI to clarify support for both Azure SQL Database and SQL Server 2025+ for native VECTOR type storage and search. Improved README with accurate prerequisites, setup instructions, and detailed ModelId usage guidance. Clarified streaming response availability in both Blazor and API. Fixed typos and improved wording in UI messages. Enhanced code comments for clarity and accuracy, including ModelId guidance in appsettings.json.
This commit is contained in:
Marco Minerva
2026-07-28 15:14:17 +02:00
parent dc26a3d2e9
commit f9f75cdf7c
6 changed files with 36 additions and 24 deletions
@@ -19,7 +19,7 @@ public partial class GenerateEmbeddingExecutor(IServiceProvider serviceProvider,
var chunks = await decoder.DecodeAsync(request.Content, request.ContentType, cancellationToken);
var chunkContents = chunks.Select(p => p.Content).ToList();
// We get the token count of the whole document because it is the total number of token used by embedding (it may be necessary, for example, for cost analysis).
// We get the token count of the whole document because it is the total number of tokens used by the embedding (it may be necessary, for example, for cost analysis).
var tokenCount = tokenizerService.CountEmbeddingTokens(string.Join(" ", chunkContents));
// Process paragraphs in batches.