Class: SkillBench::Tools::Registry
- Inherits:
-
Object
- Object
- SkillBench::Tools::Registry
- Defined in:
- lib/skill_bench/tools/registry.rb
Overview
Registry for all available tools, providing their definitions to the LLM.
Class Method Summary collapse
-
.definitions ⇒ Array<Hash>
Returns an array of tool definitions in the format expected by the LLM API.
Class Method Details
.definitions ⇒ Array<Hash>
Returns an array of tool definitions in the format expected by the LLM API.
14 15 16 17 18 19 20 |
# File 'lib/skill_bench/tools/registry.rb', line 14 def self.definitions [ ReadFile.definition, WriteFile.definition, RunCommand.definition ] end |