MemoryController constructor
MemoryController({
- required ExecutionEnv env,
- String? projectRoot,
- String? userRoot,
- LlmProvider? llmProvider,
- String? projectStoragePath,
- String? userStoragePath,
- Future<
MemoryConfig?> configSource()?, - void onConfigChanged()?,
Implementation
MemoryController({
required ExecutionEnv env,
String? projectRoot,
this._userRoot,
this._llmProvider,
this._projectStoragePath,
this._userStoragePath,
this.configSource,
this.onConfigChanged,
}) : _env = env,
_projectRoot = projectRoot ?? env.cwd;