A simple package for the purpose of providing a set of utilities that make it easier to invoke python functions and coroutines using OpenAI's GPT models.
Project description
GPT Function Calling Utility
The GPT Function Calling Utility is a Python package designed to streamline the process of calling Python methods using OpenAI's Function Calling API, without wrapping around the OpenAI library.
Please note that GPT Function Calling Utility does not directly make calls to OpenAI's API, but rather helps with function modeling and invocation when given a function_call field.
Installation
python -m pip install -U gptfunctionutil
Key Features
-
Simplified Function Modeling Via Inheritance: This package utilizes subclasses decended from the
GPTFunctionLibrary
class that allows you to define sets of callable methods to be sent to OpenAI's Chat Completion endpoint.GPTFunctionLibrary
contains methods to create a json schema describing your functions, and to invoke said functions using the Function Call field returned with a call to chat/completions. -
Decorate Invokable Functions, and Coroutines: OpenAI's Function Calling Feature needs JSON schema to outline the name, description, and parameters of each invokable function. This utility uses two decorators, (
@AILibFunction
) and (@LibParam
), as well as type annotation to create this schema for functions you want to use with the API.- set a display name and description with (
@AILibFunction
). You can also specify required parameters with this decorator, but it's not required. - apply small descriptions to arguments with (
@LibParam
), to inform the API on what it does. - (
@LibParamSpec
) can apply additional keywords depending on the type. (see https://json-schema.org/understanding-json-schema/index.html for details.) - You can decorate coroutines as well.
- set a display name and description with (
-
Parameter Typing and Descriptions: To ensure clarity and facilitate proper function formatting, GPT Function Calling Utility requires that all parameters intended to be passed into the AI have an applied type; strings, integers, floats, and bools. The library utilizes a collection of converter objects to generate schema for each parameter based on type annotations.
-
Convert into complex types: The utility is capable of converting some more complex data types into a json schema, such as datetimes and Literals.
- Define Custom Converters to automatically use response arguments to initalize objects.
- (see examples/custom_converters.py for an example.)
- Define Custom Converters to automatically use response arguments to initalize objects.
-
Schema Generation for API Calls: Before making a call to the OpenAI chat/completion endpoint, the utility has a
get_schema()
method to extract the formatted functions as a list of dictionaries. This schema is then passed as thefunctions
field in the ChatCompletion call. If the AI determines that it should invoke a function call, you can pass the returnedfunction_call
field into thecall_by_dict(function_call)
(orcall_by_dict_async
if you're trying to call a decorated coroutine) method to call the corresponding function with the provided arguments.- The method also checks if there is a function by that name, falling back to a default response if something goes wrong.
- Schema can also validate and convert responses returned from the chat/completions endpoint.
-
Integration with Discord.py: This utility was intended to be used with life as a discord.py utility, and can be easily integrated with discord.py bots.
- Simply import
gptfunctionutil
into your Discord bot project, and decorate your commands with@LibParam
and@AILibFunction
. After passing the Commands into a GPTFunctionLibrary subclass withadd_in_commands(your_bot_object_here)
, your bot commands will become invokable in the same way as a decorated GPTFunctionLibrary coroutine, provided you use thecall_by_dict_ctx
method.- (see examples/discord_bot.py for an example.)
- Simply import
Usage Example
Using GPT Function Calling Utility with OpenAI to get the current time:
from gptfunctionutil import GPTFunctionLibrary, AILibFunction, LibParam, LibParamSpec
from datetime import datetime
import openai
class MyLib(GPTFunctionLibrary):
#Define methods here.
@AILibFunction(name='get_time', description='Get the current time and day in UTC.')
@LibParam(comment='An interesting, amusing remark.')
def get_time(self, comment: str):
# get the current time, with a small remark.
return f"{comment}\n{str(datetime.now())}"
# Initialize the subclass somewhere in your code
mylib = MyLib()
client = openai.Client()
completion = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
#This message will invoke get_time
{"role": "user", "content": "Hello, get me the current time in UTC."}
],
"tools"=: mylib.get_tool_schema(),
"tool_choice"= 'auto',
)
message=completion.choices[0]['message']
if message.tool_calls:
for tool in message.tool_calls:
output = mylib.call_by_tool(tool)
print(tool.name,output)
else:
print(completion.choices[0].message.content)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gptfunctionutil-0.3.7.3.tar.gz
.
File metadata
- Download URL: gptfunctionutil-0.3.7.3.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c99a9a89503f549bbb1673531a9d41329c0bf51b6934f27ad31035058429765 |
|
MD5 | accf76c339a355c77b72fc31af479a82 |
|
BLAKE2b-256 | 2264f568c8937171078089cd08f130c6022ca1d639fe7bf4c318f791f71e0eee |
File details
Details for the file gptfunctionutil-0.3.7.3-py3-none-any.whl
.
File metadata
- Download URL: gptfunctionutil-0.3.7.3-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d814a7458b4970e3ee2f7d648a8d77e069ea855094545d1fa6777be40f76bf8 |
|
MD5 | 909ee9c6e2e114e41de9a4bd884b20b0 |
|
BLAKE2b-256 | 0829a0e557fe937915ed277b3d310050f2038f22222bf75cc2e41ab2bf4500c4 |