EmbeddedRestrictions constructor

const EmbeddedRestrictions({
  1. bool allowFileSystem = false,
  2. bool allowProcessSpawn = false,
  3. bool allowNetwork = true,
  4. int? maxTokensPerRequest,
  5. List<String> allowedTools = const [],
})

Implementation

const EmbeddedRestrictions({
  this.allowFileSystem = false,
  this.allowProcessSpawn = false,
  this.allowNetwork = true,
  this.maxTokensPerRequest,
  this.allowedTools = const [],
});