Skip to main content

get_tool_definitions

Method
This is a method of the ToolRegistry class in the registry module.
Get OpenAI-compatible tool definitions with dynamic schema overrides applied. This is the main entry point for getting tool schemas that respects dynamic overrides. Called every time tools need to be passed to the LLM.

Signature

Parameters

Optional
Optional callable (tool_name) -> bool that returns False when a tool is denied for the current agent/session. Denied tools are dropped from the advertised schema, mirroring the existing check_availability() filter (deny = hide). None (default) advertises every available tool, preserving backward compatibility.

Returns

List[Dict[str, Any]]
List of OpenAI-compatible tool definition dictionaries

Uses

  • check_availability
  • logging.debug
  • logging.warning
  • permission_resolver
  • logging.error

Used By

Source

View on GitHub

praisonaiagents/tools/registry.py at line 247

Tools Concept

Create Custom Tools

Tool Development