feat: add Jarvis agent verification foundation
Add Day 1 agent runtime foundations with task and event schemas, verifier support, capability metadata, graph event tracing, and regression coverage while preserving the direct execution path.
This commit is contained in:
10
backend/app/agents/schemas/__init__.py
Normal file
10
backend/app/agents/schemas/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from app.agents.schemas.event import AgentEvent
|
||||
from app.agents.schemas.task import AgentTask, TaskResult, TaskLifecycleStatus, VerificationStatus
|
||||
|
||||
__all__ = [
|
||||
"AgentEvent",
|
||||
"AgentTask",
|
||||
"TaskLifecycleStatus",
|
||||
"TaskResult",
|
||||
"VerificationStatus",
|
||||
]
|
||||
Reference in New Issue
Block a user