heavyTool static method

Map<String, dynamic> heavyTool()

High-resource usage tool

Implementation

static Map<String, dynamic> heavyTool() => ToolAnnotationUtils.builder()
  .resourceUsage(const ResourceUsage(
    cpu: 'high',
    memory: 'high',
  ))
  .supportsProgress()
  .supportsCancellation()
  .estimatedDuration(600) // 10 minutes
  .build();