Register the programmatic tool calling wrapper.
(registry: &Arc<ToolRegistry>)
| 65 | |
| 66 | /// Register the programmatic tool calling wrapper. |
| 67 | pub fn register_program(registry: &Arc<ToolRegistry>) { |
| 68 | register_program_with_catalog( |
| 69 | registry, |
| 70 | crate::program::ProgramCatalog::with_builtin_programs(), |
| 71 | ); |
| 72 | } |
| 73 | |
| 74 | /// Register the programmatic tool calling wrapper with a custom catalog. |
| 75 | pub fn register_program_with_catalog( |
no test coverage detected