Introduce core agent framework components: workflow persistence models, tool registry system, and reference binding logic.

This commit is contained in:
2026-06-15 15:01:12 +02:00
parent f43976f167
commit f8325e5458
6 changed files with 698 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
"""Native Heimgeist tools and validated workflow execution."""
from .registry import NativeToolProvider, ToolDefinition, ToolExecutionContext
__all__ = ["NativeToolProvider", "ToolDefinition", "ToolExecutionContext"]