Posts by this author

Nov 12, 2024
2
2

Transforming Semantic Kernel Functions

Functions are a key component of Semantic Kernel. As an AI Orchestrator, Semantic Kernel coordinates function execution together with Large Language Model (LLM) inference to allow the model return better responses or take action. Semantic Kernel groups related functions as plugins and provides capabilities to generate plugins from native code (e.g....

Semantic KernelAnnouncement
Nov 4, 2024
0
3

Managing Chat History for Large Language Models (LLMs)

Large Language Models (LLMs) operate with a defined limit on the number of tokens they can process at once, referred to as the context window. Exceeding this limit can have significant cost and performance implications. Therefore, it is essential to manage the size of the input sent to the LLM, particularly when using chat completion models. This i...

Semantic KernelAnnouncement
Oct 29, 2024
0
1

Microsoft.Extensions.VectorData.Abstractions: Now Available

We are thrilled to announce the launch of Microsoft.Extensions.VectorData for .NET! Our collaboration with the .NET team since the debut of Semantic Kernel has resulted in a powerful new feature that aligns with the best practices of both current and upcoming .NET releases.  This is the second new package as part of this collaboration.  You can lea...

Semantic KernelAnnouncementsAnnouncement
Aug 28, 2024
0
3

Protecting against Prompt Injection Attacks in Chat Prompts

Semantic Kernel allows prompts to be automatically converted to ChatHistory instances. Developers can create prompts which include <message> tags and these will be parsed (using an XML parser) and converted into instances of ChatMessageContent. See mapping of prompt syntax to completion service model for more information. Currently it is...

Semantic KernelAnnouncements
Aug 13, 2024
0
4

Support for Azure.AI.OpenAI and OpenAI v2 is here

Update: We have released a new NuGet Gallery | Microsoft.SemanticKernel 1.18.1-rc release candidate which has been updated to depend on NuGet Gallery | OpenAI 2.0.0-beta.10 and NuGet Gallery | Azure.AI.OpenAI 2.0.0-beta.3. Today we are announcing that support for Azure.AI.OpenAI and OpenAI v2 .NET SDK is available in the Semantic Kernel v1.18.0-...

Semantic KernelAnnouncement
Jul 30, 2024
0
4

Support for Azure.AI.OpenAI and OpenAI v2 is coming

Microsoft announced the official OpenAI library for .NET at the Build 2024 conference. This new SDK ensures that .NET developers have parity with other programming language libraries when accessing Azure OpenAI models. This means the new SDK will be able to support the latest OpenAI features and models as soon as they come out, such as GPT4o and As...

Semantic Kernel