McpLimits constructor

const McpLimits({
  1. int timeoutMs = 5000,
  2. int maxOutputChars = 65536,
  3. int maxSourceChars = 262144,
  4. int maxAstDepth = 200,
  5. Set<String> isolateTools = const {'apollovm.execute'},
})

Implementation

const McpLimits({
  this.timeoutMs = 5000,
  this.maxOutputChars = 65536,
  this.maxSourceChars = 262144,
  this.maxAstDepth = 200,
  this.isolateTools = const {'apollovm.execute'},
});