py2gpt
1.0.0
Recently, OpenAI has released the GPT function API that allows models like GPT-4 to "invoke" functions on the user's behalf. The problem is that the format, in which these functions is specified, is JSON Schema, which is relatively niche and hard to work with. This repository addresses this issue. It converts regular Python function declarations into JSON consumable by the OpenAI API.
For example, this Python code:
def get_current_weather(location: str, format: Literal["fahrenheit", "celsius"]):
"""
Get the current weather
:param location: The city and state, e.g. San Francisco, CA
:param format: The temperature unit to use. Infer this from the users location.
"""Produces the following JSON that matches one of OpenAI's own examples:
{
'name': 'get_current_weather',
'description': 'Get the current weather',
'parameters': {
'type': 'object',
'properties': {
'location': {
'description': 'The city and state, e.g. San Francisco, CA',
'type': 'string'
},
'format': {
'description': 'The temperature unit to use. Infer this from the
users location.',
'type': 'string',
'enum': ('fahrenheit', 'celsius')
}
}
},
'required': ['location', 'format']
}objects with certain `"properties"self parameter`)Enums