refactor(framework): make Standalone extend AbstractAgentModule

This commit is contained in:
2026-02-20 17:46:33 +08:00
parent 87c34cc699
commit ef5d5802a7

View File

@@ -33,7 +33,7 @@ sealed class AbstractAgentModule {
abstract fun execute(input: I): O
}
abstract class Standalone
abstract class Standalone : AbstractAgentModule()
// TODO 后续于此处扩展生命周期内容
}