tidyllm_tool | R Documentation |
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.
tidyllm_tool(.f, .description = character(0), ...)
.f |
The function to wrap as a tool |
.description |
Character string describing what the tool does |
... |
Named arguments providing schema definitions for each function parameter using tidyllm_fields |
Each parameter schema in ...
should correspond to a parameter in the wrapped function.
All required function parameters must have corresponding schema definitions.
A TOOL
class object that can be used with tidyllm chat()
functions
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")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.