No project description provided
Project description
Python LLM Function Client
The purpose of this library is to simplify using function calling with OpenAI-like API clients. Traditionally, you would have to rewrite your functions into JSON Schema and write logic to handle tool calls in responses. With this library, you can convert python functions into JSON schema by simply calling to_tool(func)
or you can create a client that will handle those tool calls for you and simply pass back a response once the tool call chain is finished by creating an instance of FunctionClient
.
Installation
To install simply run:
pip install llmfunctionclient
Requirements for Functions
Functions used with this library must have type annotations for each parameter. You do not have to have an annotation for the return type of the function. Currently, the supported types are string, int, StrEnum and IntEnum. If the type is a StrEnum or IntEnum, the valid values will be included as part of the function tool spec.
Optionally, you can include a docstring to add descriptions. The first line of the docstring will be considered the description of the function. Subsequent lines should be of the format <parameter_name>: <description>
For example:
def get_weather(location: str):
"""
Gets the weather
location: where to get the forecast for
"""
return f"The weather in {location} is 75 degrees"
This function will have "Gets the weather" as the function description and the location parameter will have the description "where to get the forecast for"
FunctionClient
The FunctionClient
class is made to abstract away the logic of passing along tool calls by taking in a list of functions that are allowed to be called by the LLM client, running any tool calls required by LLM client responses until it is left with just text to respond with.
from llmfunctionclient import FunctionClient
from openai import OpenAI
def get_weather(location: str):
"""
Gets the weather
location: where to get the forecast for
"""
return f"The weather in {location} is 75 degrees"
client = FunctionClient(OpenAI(), "gpt-3.5-turbo", [get_weather])
client.add_message("You are a helpful weather assistant.", "system")
response = client.send_message("What's the weather in LA?", "user")
print(response) # "The current weather in Los Angeles is 75 degrees"
When this is run, the following happens under the hood:
- The two messages specified here will be submitted to the LLM Client
- The LLM Client responds with a tool called for "get_weather"
- The get_weather function is called and the result is appended as a message
- The LLM Client is called again with the function result.
- The LLM Client Responds with an informed answer.
- This response text is passed back.
You can pass functions into the constructor of the client to create the default set of tools for every message as well as pass in the functions
kwarg to send_message
to specify a specific set of functions for that portion of the conversation.
To force the LLM to use a specific function, you can pass the force_function
kwarg with the function (or its name) you want the LLM to use and it will be provided as the tool_choice parameter for the chat completion endpoint.
to_tool
If you want to continue using any other LLM clients and just want the ability to convert python functions into JSON Schema compatible with the function calling spec, you can simply import the function to_tool and call that on the function.
Example:
def get_weather(location: str):
"""
Gets the weather
location: where to get the forecast for
"""
return f"The weather in {location} is 75 degrees"
Calling to_tool(get_weather) returns the following object
{'type': 'function',
'function': {'name': 'get_weather',
'parameters': {'type': 'object',
'properties': {'location': {'type': 'string',
'description': 'where to get the forecast for'}},
'required': ['location']}},
'description': 'Gets the weather'}
This can then be used with the normal OpenAI client like this:
messages = [{"role": "user", "content": "What's the weather like in Boston today?"}]
completion = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=messages,
tools=[to_tool(get_weather)],
tool_choice="auto"
)
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
Built Distribution
File details
Details for the file llmfunctionclient-0.1.5.tar.gz
.
File metadata
- Download URL: llmfunctionclient-0.1.5.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.18 Linux/6.5.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 736461f321e5a96a3f482a6188c00ab3b6ab58079086287ad09d7fc4b17707be |
|
MD5 | 274262eb857814db7f122c2daac5e280 |
|
BLAKE2b-256 | 56d892eb07bea88bfa5355f8439c9cb52224be3509aa6a0287266442cfbcd5af |
File details
Details for the file llmfunctionclient-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: llmfunctionclient-0.1.5-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.18 Linux/6.5.0-1017-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40be6bc3187bbbdaeb31b82f2fdd4c3cdedace04ac1d9fd032d2530ab0c2b0ee |
|
MD5 | daa4df74ccd0a573e5c263c4ef412507 |
|
BLAKE2b-256 | cbf54768dd3f18672a8f5a26038ae43c5e054b447c08ef6ab330678b3101fa1a |