Custom formatter for the logger.
Add a coloured handler to the logger.
Setup a custom logger.
Parameter for a function.
Arguments:
name
(str
): The name of the parameter.description
(Optional[str]
): The description of the parameter.type
(str
): The type of the parameter.default
(Any
): The default value of the parameter.required
(bool
): Whether the parameter is required.Convert the parameter to a dictionary for an standard dictionary-based function schema.
This is the most common format used by LLM providers, including OpenAI, Ollama, and others.
Returns:
dict[str, Any]
: The parameter in dictionary format.
Class that consumes a function and can return a schema required by different LLMs for function calling.
Initialize the FunctionSchema.
Arguments:
function
(Callable
): The function to consume.