Skip to main content

A library to generate function schemas for use in the OpenAI API.

Project description

tool2schema

Check Code

A library to convert Python functions to schemas supported by the OpenAI API.

Inspired by janekb04/py2gpt and fastai/lm-hackers.

Why tool2schema?

The OpenAI API supports function calling. However, to tell GPT what functions it can call, you must send the functions in a JSON format. With tool2schema, functions can be automatically converted to the correct JSON schema!

Installation

You can install tool2schema using pip.

pip3 install tool2schema

Usage

On all functions that you would like to get JSON schema for, simply add the GPTEnabled decorator.

# my_functions.py
from tool2schema import GPTEnabled

@GPTEnabled
def my_function1(a: int, b: str = "Hello"):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

@GPTEnabled(tags=["tag1"])
def my_function2(a: int, b: str = "Hello"):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

tool2schema provides some methods to easily retrieve your functions.

import my_functions  # Module containing your functions
import tool2schema

# Return functions with GPTEnabled decorator
gpt_enable = tool2schema.FindGPTEnabled(my_functions)

# Return all function schemas
schemas = tool2schema.FindGPTEnabledSchemas(my_functions)

# Return function with given name
f = tool2schema.FindGPTEnabledByName(my_functions, "my_function1")

# Returns all functions with given tag
fs = tool2schema.FindGPTEnabledByTag(my_functions, "tag1")

# Saves function schemas to JSON file
json_path = # Path to JSON file
tool2schema.SaveGPTEnabled(my_functions, json_path)

How it Works

tool2schema uses certain features of your function to correctly populate the schema.

  • Parameter type hints
  • Parameter default values
  • Docstring with parameter descriptions

The docstring must be of a specific format. An example function is defined below that utilises all of the above features.

def my_function(a: int, b: str = "Hello"):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """

To get the schema for this function, simply use the GPTEnabled decorator. The decorator will return a class with some additional attributes but can still be called as a function.

The schema of the function be accessed using the schema attribute.

my_function.schema.to_json()

This returns the function schema in JSON format.

Supported Parameter Types

The following parameter types are supported:

  • int
  • float
  • str
  • bool
  • list

Any other parameter types will be listed as object in the schema.

Enumerations

If you want to limit the possible values of a parameter, you can use a typing.Literal type hint or a subclass of enum.Enum. For example, using typing.Literal:

import typing


@GPTEnabled
def my_function(a: int, b: typing.Literal["yes", "no"]):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

Equivalent example using enum.Enum:

from enum import Enum

class MyEnum(Enum):
    YES = 0
    NO = 1


@GPTEnabled
def my_function(a: int, b: MyEnum):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

In the case of Enum subclasses, note that the schema will include the enumeration names rather than the values. In the example above, the schema will include ["YES", "NO"] rather than [0, 1].

The @GPTEnabled decorator also allows to invoke the function using the name of the enum member rather than an instance of the class. For example, you may invoke my_function(1, MyEnum.YES) as my_function(1, "YES").

If the enumeration values are not known at the time of defining the function, you can add them later using the add_enum method.

@GPTEnabled
def my_function(a: int, b: str,):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

my_function.schema.add_enum("b", ["yes", "no"])

Tags

The GPTEnabled decorator also supports the tags keyword argument. This allows you to add tags to your function schema.

@GPTEnabled(tags=["tag1", "tag2"])
def my_function(a: int, b: str = "Hello"):
    """
    Example function description.

    :param a: First parameter
    :param b: Second parameter
    """
    # Function code here...

The tags can then be accessed using the tags attribute.

my_function.tags  # ["tag1", "tag2"]

You can check if a function has a certain tag using the has_tag method.

my_function.has_tag("tag1")  # True

Disable parts of the schema

You can provide GPTEnabled with a number of settings to selectively disable parts of the schema. For example, to omit certain parameters:

@GPTEnabled(ignore_parameters=["b", "c"])  # b and c will not be included in the schema
def my_function(a: int, b: str, c: float):
    # Function code here...

The available settings are:

  • ignore_parameters: A list of parameter names to exclude from the schema (defaults to []).
  • ignore_all_parameters: A boolean value indicating whether to exclude all parameters from the schema (defaults to False). When set to true, all other parameter-related settings (ignore_parameters and ignore_parameter_descriptions) will be ignored.
  • ignore_function_description: A boolean value indicating whether to exclude the function description from the schema (defaults to False).
  • ignore_parameter_descriptions: A boolean value indicating whether to exclude all parameter descriptions from the schema (defaults to False).

It is also possible to specify the settings globally, so that they apply to all functions unless explicitly overridden. It can be done by editing the global configuration as follows:

import tool2schema

# Ignore all parameters named "a" or "b" by default
tool2schema.CONFIG.ignore_parameters = ["a", "b"]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tool2schema-1.0.0.tar.gz (13.3 kB view details)

Uploaded Source

Built Distribution

tool2schema-1.0.0-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file tool2schema-1.0.0.tar.gz.

File metadata

  • Download URL: tool2schema-1.0.0.tar.gz
  • Upload date:
  • Size: 13.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1019-azure

File hashes

Hashes for tool2schema-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3d9dd7c7227320128b3f40cf01f55d2a9aa4880d2108a763a9e50a584058e9de
MD5 e020d05b0657e7157d4db1367e0e0714
BLAKE2b-256 cc2cef9cea6f49ac9c206ffb9b49d8f06de3b237d98815f7ebeb6009689ded75

See more details on using hashes here.

File details

Details for the file tool2schema-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: tool2schema-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1019-azure

File hashes

Hashes for tool2schema-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a37bf4d728b448a7228e24c00e0d30d08457cb7b1b37450186419a03709f936d
MD5 f0df2c8dde7bc919b91293e668d244b7
BLAKE2b-256 eb824f487dcf99a6a77c20b8507c49a15cec5317353416e617999f3c3a96631e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page