Posts

Showing posts from July, 2025

Semantic Kernel: Creating Plugins to access the business data

Image
In the modern of software application development, every single application wants an AI capability to be integrated for providing results to their end-users based on their questions/prompt. The challenge in such scenario is to integrate the AI capability to an existing application with seamless integration with the smooth data sharing. This is where we can make use of the Semantic Kernel .  What is Semantic Kernel? In a very simple words, Semantic Kernel is Microsoft’s open-source SDK that is Designed to integrate large language models (LLMs) like GPT with traditional programming logic. It supports multiple languages like C#, Python, and Java, making it accessible for a range of developers. It provides hybrid AI orchestration that combines AI capabilities like summarizing , answering , and generating with conventional app code and workflows. It offers Plugin-friendly architecture to easily integrates external APIs and functions as "skills" that the AI can call. We can use Se...