| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This gallery helps Semantic Kernel (SK) developers move to the Microsoft Agent Framework (AF) with minimal guesswork. Each script pairs SK code with its AF equivalent so you can compare primitives, tooling, and orchestration patterns side by side while you migrate production workloads.
OpenAI Assistants parity samples were removed alongside the deprecated Python assistants surface and are no longer part of this migration gallery.
Each script is fully async and the main() routine runs both implementations back to back so you can observe their outputs in a single execution.
From the repository root:
python samples/semantic-kernel-migration/chat_completion/01_basic_chat_completion.py
Every script accepts no CLI arguments and will first call the SK implementation, followed by the AF version. Adjust the prompt or credentials inside the file as necessary before running.
Advanced comparisons are split between samantic-kernel-migration/orchestrations (Sequential, Concurrent, Magentic) and samantic-kernel-migration/processes (fan-out/fan-in, nested). You can run them directly, or isolate dependencies in a throwaway virtual environment:
cd samples/semantic-kernel-migration uv venv --python 3.10 .venv-migration source .venv-migration/bin/activate uv pip install semantic-kernel agent-framework uv run python orchestrations/sequential.py uv run python processes/fan_out_fan_in_process.py
Swap the script path for any other workflow or process sample. Deactivate the sandbox with deactivate when you are finished.
| Back | FazBrowse Home | New Git URL |