ToolExecutor typedef

ToolExecutor = Future<Map<String, ToolValue>> Function(Map<String, ToolValue> args)

Function type for tool executors. Takes arguments as strongly-typed ToolValue map, returns result map.

Implementation

typedef ToolExecutor = Future<Map<String, ToolValue>> Function(Map<String, ToolValue> args);