git clone https://github.com/lokesh-keyan/semantic-kernal-app.git
cd semantic-kernal-appMake sure you're in a virtual environment, then run:
pip install -r requirements.txtCopy the example environment file:
cp .env.example .envUpdate .env with your Azure OpenAI and Azure AI Foundary configuration:
AZURE_OPENAI_ENDPOINT=https://xxxxxx.openai.azure.com/
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME=gpt-4o
AZURE_OPENAI_API_KEY=xxxxxxxxxxx
AZURE_OPENAI_API_VERSION=2025-03-01-preview
Replace
xxxxxxandxxxxxxxxxxxwith your actual Azure OpenAI resource details.
python main.pyThis will execute the main program and demonstrate how the Semantic Kernel works with Azure OpenAI.
Happy hacking! 🚀