Func Runner Help

Create Your First Function

Now for the fun part! Let's write a function that your OpenAI assistant can actually use! Assuming you completed the previous section, and you provided a valid API key, you are one step closer to creating incredibly powerful assistants.

Create a Greet Function

The Python Func Runner framework tries to follow the same decorator-based design that you may see in other Python web frameworks. Any function decorated with @app.function will be registered with your application and available for your assistant to use.

# main.py from dotenv import load_dotenv from funcrunner.app import FuncRunnerApp load_dotenv() app = FuncRunnerApp() @app.function def greet(name: str): """generates a greeting with a given name""" return f"Hello, {name}" app.run()

Restart your application by running the following command:

python main.py

You should see an output similar to the following:

[info ] Registering function: 'greet' [info ] Starting Func Runner application... [info ] Available functions: greet

Auto Update OpenAI Assistant Function Definitions

When you provide an assistant_id when initializing the Func Runner Application, the framework will inspect the registered functions and look at the method signature and docstring to generate a function definition to attach to your assistant. This allows you to develop without worrying about manually configuring assistants.

# main.py from dotenv import load_dotenv from funcrunner.app import FuncRunnerApp load_dotenv() app = FuncRunnerApp(assistant_id="asst_t9k7oe0qJs9cZJsODeolbVFR") @app.function def greet(name: str): return f"Hello, {name}" app.run()

Restart your application by running the following command:

python main.py

You should see an output similar to the following:

[info ] Registering function: 'greet' [info ] Starting Func Runner application... [info ] Available functions: greet [info ] Updating assistant functions... assistant_id=asst_tliJoe0qJpbcZJsODeolbVJF [info ] Generating function spec for function: 'greet' [debug ] Generated function spec for function: 'greet' spec={'type': 'function', 'function': {'name': 'greet', 'description': 'generates a greeting with a given name', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name parameter.'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}} [info ] Finished updating assistant functions... assistant_id=asst_tliJoe0qJpbcZJsODeolbVJF

If you go look at your OpenAI Assistant in the OpenAI Platform you will see that your assistant has been automatically updated with the correct function definition.

AutoGenFuncDefinitions.png
AutoGenFuncDefinitions2.png

Magic! 🪄🥳

Last modified: 17 December 2024