From c52e99ac77b5e10ebbcab4c7f3589ebfe80b7b4c Mon Sep 17 00:00:00 2001 From: xbotter Date: Thu, 2 Nov 2023 14:03:17 +0800 Subject: [PATCH] update example --- LLama.Examples/NewVersion/KernelMemory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LLama.Examples/NewVersion/KernelMemory.cs b/LLama.Examples/NewVersion/KernelMemory.cs index 27eb9ca2..8320acf5 100644 --- a/LLama.Examples/NewVersion/KernelMemory.cs +++ b/LLama.Examples/NewVersion/KernelMemory.cs @@ -22,11 +22,11 @@ namespace LLama.Examples.NewVersion { MaxTokensPerParagraph = 300, MaxTokensPerLine = 100, - OverlappingTokens = 50 + OverlappingTokens = 30 }) .BuildServerlessClient(); - await memory.ImportDocumentAsync(@"./Assets/sample-SK-Readme.pdf"); + await memory.ImportDocumentAsync(@"./Assets/sample-SK-Readme.pdf", steps: Constants.PipelineWithoutSummary); var question = "What's Semantic Kernel?";