Mark Wallace

Results 168 comments of Mark Wallace

## Python Unit Test Overview | Tests | Skipped | Failures | Errors | Time | | ----- | ------- | -------- | -------- | ------------------ | | 7 |...

## Python Unit Test Overview | Tests | Skipped | Failures | Errors | Time | | ----- | ------- | -------- | -------- | ------------------ | | 22 |...

We currently have this Blog post https://devblogs.microsoft.com/semantic-kernel/managing-chat-history-for-large-language-models-llms/ which describes how to manage chat history and includes samples for .Net only. The purpose of this task is to extend this to...

@moonbox3 Dmytro has to add learn site documentation and also fix system message handling. I can remove you from the issue as there is nothing for you to do. This...

@ktjosh Thanks for creating this issue. The code can be simplified a bit, try the following: ```csharp // Create a kernel with OpenAI chat completion Kernel kernel = Kernel.CreateBuilder() .AddOpenAIChatCompletion(...

@ddramireddy Here is a unit test which shows how to do this: https://github.com/microsoft/semantic-kernel/blob/main/dotnet/src/SemanticKernel.UnitTests/PromptTemplate/KernelPromptTemplateTests.cs#L105-L128

Hi @ddramireddy if your prompt contains a function call, then rendering the prompt will invoke the function as the rendered prompt includes the return value from the function. Can you...

@ddramireddy please create a new issue if you need further assistance

We have protection to prevent prompt injection attacks which will encode potentially dangerous tags. If you trust the content you can change this behaviour, take a look at this sample...

@Krzysztof318 The plan is to include this as part of the feature graduation work which is being tracked here #8094