Creates a tool definition for use with Language Model API calls that support function calling. This function wraps an existing R function with schema information for LLM interaction.
Usage
tidyllm_tool(.f, .description = character(0), ...)
Value
A TOOL
class object that can be used with tidyllm chat()
functions
Details
Each parameter schema in ...
should correspond to a parameter in the wrapped function.
All required function parameters must have corresponding schema definitions.
Examples
get_weather <- function(location){}
weather_tool <- tidyllm_tool(
get_weather,
"Get the current weather in a given location",
location = field_chr("The city and state, e.g., San Francisco, CA")
)