Deploying Azure Kubernetes Service Demo Store App with Azure Open AI – Part 2

This blog post is a continuation of Deploying Azure Kubernetes Service Demo Store App with Azure Open AI – Part 1. It dives into the Python code that calls the Azure Open AI Service and highlights the use of Semantic Kernel. The AKS Demo Store uses the AI functionality to generate product descriptions. The article emphasizes the benefits of using Azure Kubernetes Service (AKS) to support AI Ops platform.

Using GitHub Actions To Run My Python Azure Command Line Tool – Part 2

The post introduces GitHub Actions and a workflow with an Azure service principal name. The workflow YAML code involves manual user trigger, Azure login, Python setup, package installation, building a command line tool, and executing it with workflow input values. The post also provides the workflow YAML file and emphasizes the use of GitHub Actions for custom command line tool creation and Azure integration.

Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 4

In building a python script demo in Part 3, I want to show how to package up the python script into a windows executable with command line arguments. This is so what it can be run in windows command prompt or PowerShell session. The python packages to use is Click and Setuptools Click is a …

Continue reading Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 4

Step-by-Step Azure SDK for Python in Windows VS Code – Part 3

In this blog post I will run Python code in VSCode and show the experience. This is a continuation of Part 2 about setting up a python local development environment and install prerequisites. I have put together a Python script that does the following Authenticate with user credentials Look up an existing resource group with …

Continue reading Step-by-Step Azure SDK for Python in Windows VS Code – Part 3

Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 2

This post will share This post is continuing from Part 1. And I will be showing out how to include Azure SDK libraries/packages to install, authentication and setting up a python virtual environment in VS Code. The bare essentials for Azure Python packages are: pip install azure-identity #for authentication pip azure-mgmt-resource # resource management client …

Continue reading Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 2