Support for Unity Catalog functions as Anthropic tools
Project description
Using Unity Catalog AI with the Anthropic SDK
You can use the Unity Catalog AI package with the Anthropic SDK to utilize functions that are defined in Unity Catalog to be used as tools within Anthropic LLM calls.
Installation
Client Library
To use this package with Unity Catalog, you will need to install:
pip install unitycatalog-anthropic
To use this package with Databricks Unity Catalog, you will need to install:
pip install unitycatalog-anthropic[databricks]
Getting started
Creating a Unity Catalog Client
To interact with your Unity Catalog server, initialize the UnitycatalogFunctionClient as shown below:
import asyncio
from unitycatalog.ai.core.client import UnitycatalogFunctionClient
from unitycatalog.client import ApiClient, Configuration
# Configure the Unity Catalog API client
config = Configuration(
host="http://localhost:8080/api/2.1/unity-catalog" # Replace with your UC server URL
)
# Initialize the asynchronous ApiClient
api_client = ApiClient(configuration=config)
# Instantiate the UnitycatalogFunctionClient
uc_client = UnitycatalogFunctionClient(api_client=api_client)
# Example catalog and schema names
CATALOG = "my_catalog"
SCHEMA = "my_schema"
Creating a Unity Catalog Function
You can create a UC function either by providing a Python callable or by submitting a FunctionInfo object. Below is an example (recommended) of using the create_python_function API that accepts a Python callable (function) as input.
To create a UC function from a Python function, define your function with appropriate type hints and a Google-style docstring:
def add_numbers(a: float, b: float) -> float:
"""
Adds two numbers and returns the result.
Args:
a (float): First number.
b (float): Second number.
Returns:
float: The sum of the two numbers.
"""
return a + b
# Create the function within the Unity Catalog catalog and schema specified
function_info = uc_client.create_python_function(
func=add_numbers,
catalog=CATALOG,
schema=SCHEMA,
replace=False, # Set to True to overwrite if the function already exists
)
print(function_info)
Databricks-managed Unity Catalog
To use Databricks-managed Unity Catalog with this package, follow the instructions to authenticate to your workspace and ensure that your access token has workspace-level privilege for managing UC functions.
Client setup
Initialize a client for managing UC functions in a Databricks workspace, and set it as the global client.
from unitycatalog.ai.core.base import set_uc_function_client
from unitycatalog.ai.core.databricks import DatabricksFunctionClient
client = DatabricksFunctionClient()
# sets the default uc function client
set_uc_function_client(client)
Create a Function in UC
Create a python UDF in Unity Catalog with the client
# replace with your own catalog and schema
CATALOG = "catalog"
SCHEMA = "schema"
func_name = f"{CATALOG}.{SCHEMA}.python_exec"
# define the function body in SQL
sql_body = f"""CREATE OR REPLACE FUNCTION {func_name}(location STRING COMMENT 'Retrieves the current weather from a provided location.')
RETURNS STRING
LANGUAGE PYTHON
COMMENT 'Returns the current weather from a given location and returns the temperature in degrees Celsius.'
AS $$
return "31.9 C"
$$
"""
client.create_function(sql_function_body=sql_body)
Now that the function is created and stored in the corresponding catalog and schema, we can use it within Anthropic's SDK.
Using the Function as a GenAI Tool
Create a UCFunctionToolkit instance
Tool use through the Anthropic SDK allows you to connect external client-side tools and functions to provide Claude with a greater range of capabilities to augment its ability to respond to user messages.
To begin, we will need an instance of the tool function interface from the unitycatalog.ai.anthropic toolkit.
from unitycatalog.ai.anthropic.toolkit import UCFunctionToolkit
# Create an instance of the toolkit with the function that was created earlier.
toolkit = UCFunctionToolkit(function_names=[f"{CATALOG}.{SCHEMA}.python_exec"], client=client)
# Access the tool definitions that are in the interface that Anthropic's SDK expects
tools = tookit.tools
Now that we have the defined tools from Unity Catalog, we can directly pass this definition into a messages request.
Use the tools within a request to Anthropic models
Anthropic will generate a stopping condition of "tool_use" when a relevant tool definition is provided to a message creation call, responding with the
function's name to call and the input arguments to provide to the tool.
import anthropic
anthropic_client = anthropic.Anthropic()
multi = "What's the weather in Nome, AK and in Death Valley, CA?"
question = [{"role": "user", "content": multi}]
response = anthropic_client.messages.create(
model="claude-3-5-sonnet-20240620",
max_tokens=1024,
tools=tools,
messages=question,
)
print(response)
Within the response, you will see instances of ToolUseBlock from Anthropic's SDK. These blocks, if present, indicate the name of the tool to use
and the inputs to provide to the defined tool's function.
Calling the function
There are two ways of calling the function within UC:
- Use the
generate_tool_call_messagesfunction on the response.
This is the recommended API to use to simplify your workstream. This option will extract the tool calling instructions, execute the appropriate
functions in Unity Catalog, and return the payload needed to call the anthropic.Anthropic.messages.create API directly. If there are no tool
calls to be made, this function will return the state of the conversation history up to this point.
Note that the conversation history up until this point (which must start with the initial user input message) is required for this API to function correctly. Anthropic requires the full scope of the history, including both the tool use request and the tool response messages in order to continue providing an answer. In the example below, the only history that we have is the original initial user question.
In the example shown here, there are two tool calls that will be requested by the Anthropic model (one for getting the weather in Nome Alaska, the
other for getting the weather in Death Valley California). This utility function will call our Unity Catalog function twice, preserving the tool call
id for each that maps to the ToolUseBlock's tool_use_id entry for each call.
from unitycatalog.ai.anthropic.utils import generate_tool_call_messages
# Call the Unity Catalog function and construct the required formatted response history for a subsequent call to Anthropic
tool_messages = generate_tool_call_messages(response=response, client=client, conversation_history=question)
# Call the Anthropic client with the parsed tool response from executing the Unity Catalog function
tool_response = anthropic_client.messages.create(
model="claude-3-5-sonnet-20240620",
max_tokens=1024,
tools=tools,
messages=tool_messages,
)
print(tool_response)
When integrating this logic within your application, keep in mind that Claude may do multi-turn function calling if there are dependencies needed between
function calls. Repeatedly calling generate_tool_call_messages with a conditional break if the stop_reason in the response is end_turn may be
required to answer complex questions that could involve conditionally dependent tools (such as a condition where you have one function that determines th
capital city of a country and another function that fetches the weather within a city, Claude will perform a multi-turn tool use call after the capital
city function's returned value is provided).
- Manually, via the returned values of
extract_tool_call_data.
Note this is a lower-level API and is intended for advanced use cases where logic needs to exist between the tool call request, its response, and the construction of a subsequent call to Anthropic.
This API is useful if you need to perform validation prior to calling a function or if you prefer to handle the direct return of the Unity Catalog function call yourself. This lower-level approach and will require a more complex integration with the Anthropic SDK.
from unitycatalog.ai.anthropic.utils import extract_tool_call_data
# This returns a List[ToolCallData] for Anthropic
parsed_messages = extract_tool_call_data(response)
# To see the parsed data that will be submitted for function calling in Unity Catalog:
parsed = [message.to_dict() for message in parsed_messages]
print(parsed)
# To call each tool and provide the formatted response objects:
# Note that you will need to construct the full conversation history to submit to Anthropic if you use this API
# as the return of `to_tool_result_message` contains only the formatted response from a tool call.
results = []
for message in parsed_messages:
result = message.execute(uc_client)
results.append(message.to_tool_result_message(result))
print(results)
Configurations for Databricks-only UC function execution
We provide configurations for the Databricks Client to control the function execution behaviors, check function execution arguments section.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file unitycatalog_anthropic-0.2.0.tar.gz.
File metadata
- Download URL: unitycatalog_anthropic-0.2.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ca9e20cba5ed269d254b4b803a433d79a273e26c40af77926fff415f4e3570
|
|
| MD5 |
d26a4c718dd6541bf2ea4a48280c29a9
|
|
| BLAKE2b-256 |
2cd7c695ede0552e2227e27417d68aa6d9c8d8029b4574ed3b94bf38102ee21a
|
File details
Details for the file unitycatalog_anthropic-0.2.0-py3-none-any.whl.
File metadata
- Download URL: unitycatalog_anthropic-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2341ab0d94765fd233d47879fca4a87523b375fc0ccb82d79cfec534d99028ed
|
|
| MD5 |
f22993fd00e3d3ff1e9c036450ebd688
|
|
| BLAKE2b-256 |
f7a4edb0fa137b458c8e87fe8752c59519770a81cc54f1d1b162526381434ae1
|