This repository hosts a small console application that demonstrates how to build an agent with the Semantic Kernel SDK. The sample agent can answer chat prompts and manage files via the included FilePlugin
.
- .NET 9 SDK
- Azure OpenAI endpoint and API key
Store your Azure OpenAI settings using user secrets:
dotnet user-secrets set "Endpoint" "<your-endpoint>"
dotnet user-secrets set "ApiKey" "<your-api-key>"
From the repository root run:
dotnet run --project LearnSemanticKernel
The agent will prompt for input and can create or list files under the c:\sk-temp
directory.