Create Your First Function
In this guide, we'll walk you through creating your first function using Func Runner. This example will demonstrate how to define a function that returns a list of purchases. Our examples will be simple, but close your eyes and imagine that these functions can do just about anything you want -- including interacting with a database or sending an email!
Step 1: Define Your Function
Start by defining your function using the @app.activity_trigger
decorator, which is a binding specific to Azure Durable Functions. When you go to name your function, remember that you will be using this same function name in your OpenAI Assistant function definitions. Consistency will be important when we go forward to step two!
To learn more about activity bindings, visit the Bindings for Durable Functions - Azure documentation. For the purposes of this guide, all you need to know is that the Func Runner system passes your OpenAI Assistant 'tool call' parameters through the parameters argument as a Python dictionary.
Step 2: Create the Matching OpenAI Assistant Function Definition
Your OpenAI Assistant needs to know what functions are available to it, what they are for and what types of parameters your function can accept. To do this navigate to the Assistants - OpenAI API page and select the assistant you plan on using this function with.
Click on + Functions
inside the OpenAI Assistant blade and paste the following JSON object.
Press Save
to attach the 'get_purchases' function definition to your assistant.