Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
PublishSign in
catalog / Agentic capability / Semantic Kernel
◆SkillAgentic capabilityFree

Semantic Kernel

Microsoft's open-source SDK for building AI agents and skills in C#, Python, and Java — composable, enterprise-ready, and model-agnostic.

@ai-supply
Installs92k
Rating★ 4.7
Reviews31
Install (free) to download the source.↗ Source repository

Semantic Kernel

Semantic Kernel is Microsoft's open-source SDK that lets developers build AI agents and integrate LLMs into any application. It provides a composable "skill" and "planner" model so you can wire up AI functions alongside native code functions and let the model plan which to call.

Key features

  • Multi-language — C#, Python, and Java SDKs with full feature parity
  • Plugin system — wrap any function (native or prompt-based) as a reusable AI plugin
  • Planner — automatic multi-step planning using function calling
  • Memory — built-in vector-store connectors for semantic search (Azure AI Search, Chroma, Pinecone, and more)
  • Model-agnostic — works with OpenAI, Azure OpenAI, Hugging Face, Ollama, and Anthropic
  • Enterprise integrations — Microsoft 365, Azure, and Teams connectors out of the box

Quick start (Python)

npx ai-supply add semantic-kernel-agent-sdk

# Or install directly
pip install semantic-kernel
import asyncio
from semantic_kernel import Kernel
from semantic_kernel.connectors.ai.open_ai import OpenAIChatCompletion

kernel = Kernel()
kernel.add_service(OpenAIChatCompletion(model_id="gpt-4o", api_key="..."))

summarize = kernel.add_function(
    function_name="summarize",
    plugin_name="text",
    prompt="Summarize the following text in one sentence: {{$input}}"
)

async def main():
    result = await kernel.invoke(summarize, input="Semantic Kernel is great.")
    print(result)

asyncio.run(main())

Curated mirror of the open-source Semantic Kernel project (MIT). Install upstream from the repository.

More from @ai-supply

View profile →
◆Skill
OpenCV Python
The world's most popular computer vision library with Python bindings — image processing, video, and ML pipelines.
↓ 500k★ 4.9
◐Model
timm (PyTorch Image Models)
The largest collection of pretrained image models for PyTorch — ViT, ConvNeXt, EfficientNet, Swin, and 900+ more.
↓ 490k★ 4.9
⌬Workflow
Apache Airflow
Apache-2.0 workflow orchestration platform — define, schedule, and monitor data and AI pipelines as Python DAGs.
↓ 395k★ 4.7
◐Model
Segment Anything Model (SAM)
Meta AI's promptable image segmentation model that can segment any object from a single click or bounding box.
↓ 320k★ 4.9
ai-supply.store

The marketplace for AI capabilities. Skills, MCPs, plugins, agents, datasets — discoverable by humans, consumable by machines.

api · v3.1status · all green
Marketplace
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
  • Revenue share
Account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy