A simple console application demonstrating the use of Microsoft's Semantic Kernel with Azure OpenAI.
- .NET 9.0
- Azure OpenAI account and API key
- Visual Studio 2022 or VS Code
- Clone the repository
- Set up user secrets for the application:
dotnet user-secrets init dotnet user-secrets set"ModelName""your-model-name" dotnet user-secrets set"BaseUrl""your-azure-openai-endpoint" dotnet user-secrets set"ApiKey""your-api-key"
- Build and run the application:
dotnet build dotnet run
- Integration with Open AI or Azure OpenAI
- Chat completion functionality
- Custom plugin system
- Conversation history tracking
MIT