semantic-kernel — Easy Examples
Microsoft SDK for integrating LLMs into applications
Getting started with semantic-kernel
Installation and basic usage of semantic-kernel.
python
# Install: pip install semantic-kernel import semantic_kernel # Basic semantic-kernel usage print(f"Using semantic-kernel") # See documentation for detailed examples
Expected Output
# Expected output shown below # (Run locally with: semantic_kernel)
semantic-kernel is a third-party package. Microsoft SDK for integrating LLMs into applications. Install with: pip install semantic-kernel
Common semantic-kernel operations
Frequently used features of semantic-kernel.
python
# Install: pip install semantic-kernel import semantic_kernel # Common semantic-kernel patterns print(f"semantic-kernel version: {semantic_kernel.__version__}")
These are the most commonly used features of semantic-kernel in everyday development.
Want to try these examples interactively?
Open Easy Playground