Getting started with Custom Engine Agents

Lets get up and running with our first Custom Engine Agent


Agent Chat

The Teams Toolkit has made it really easy to get started with Custom Engine Agents and thats what we are going to cover here. If you prefer a video format, I plan on creating a YouTube video.

Just so we are on the same page, you will need the following:

  1. An Azure Subscription with a deployment of Azure OpenAI
  2. Have a working knowledge of Visual Studio Code
  3. Have a working knowledge of Python, JavaScript or TypeScript

Lets start in Azure AI Foundry and get the following details which we will need in the configuration later:

  1. Azure OpenAI Endpoint
  2. Azure OpenAI Key
  3. Azure OpenAI deployment name

Azure Foundry

Now over to VS Code and navigate to the extensions marketplace and search for "Teams Toolkit" and install it (is will be the one created by Microsoft).

Teams Toolkit

Once installed, create a new app.

New App

Select the "Custom Engine Agent" option

Custom Engine Agent

Select "Basic AI Chatbot"

Basic Chatbot

Select your preferred programming language. I will go with Python.

Programming Language

Select your LLM service. We will be using Azure OpenAI as we got our details from Azure AI Foundry. You can also use OpenAI if you prefer.

LLM Service

The next steps will use the information we noted down from Azure AI Foundry.

Enter your Azure OpenAI Key

OpenAI Key

Enter your Azure OpenAI Endpoint

OpenAI Endpoint

Enter your Azure OpenAI Deployment Name

OpenAI Deployment

Once that is completed, you should have all the code ready to execute your agent. Have a read through the Read Me file as it will provide more detail.

Chatbot Template

Create your Python environment in VS Code and use the requirements.txt file provide to ensure all the library dependencies are installed.

Python Environment

On the left had menu, you should now have the Teams Toolkit icon. Click on it and navigate to the local environment and run it by clicking the button on the right hand side of the local environment option.

Local Environment

Select your preferred browser to run in. I will be using Chrome

Chrome Debug

This will open up a browser window and will ask you to sign into the Teams Web version if you are not already signed in. It will bring you to a prompt to add the new agent to Teams. Click on the Add button.

Add to Teams

It should then redirect you into a conversation window with the agent which will greet you with "How can I help you today?"

Agent Chat

I plan on documenting a use case and walking through modifying the code base to add additional functionality.

Back in the day, it would take a really longtime to get all the plumbing ready to get this working correctly. The Teams Toolkit taken this pain away and quickly gets you up and running allowing you to focus on building your business logic.