mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-31 19:45:15 +02:00
refactor(automations): bind action handlers via ActionContext factory
This commit is contained in:
parent
f646b5cbab
commit
7ec3468113
6 changed files with 65 additions and 15 deletions
|
|
@ -7,13 +7,18 @@ from typing import Any
|
|||
from app.automations.schemas.actions import AgentTaskActionParams
|
||||
|
||||
from .store import register_action
|
||||
from .types import ActionDefinition
|
||||
from .types import ActionContext, ActionDefinition, ActionHandler
|
||||
|
||||
|
||||
async def _handle_agent_task(args: dict[str, Any]) -> dict[str, Any]:
|
||||
"""Stub. Validates params; real wiring lands with the executor."""
|
||||
AgentTaskActionParams.model_validate(args)
|
||||
return {"status": "stubbed"}
|
||||
def _build_handler(ctx: ActionContext) -> ActionHandler:
|
||||
"""Bind run/session context to the agent_task handler. Real wiring lands in Phase 4b."""
|
||||
del ctx # ignored by the stub; real handler will consume it
|
||||
|
||||
async def handle(params: dict[str, Any]) -> dict[str, Any]:
|
||||
AgentTaskActionParams.model_validate(params)
|
||||
return {"status": "stubbed"}
|
||||
|
||||
return handle
|
||||
|
||||
|
||||
AGENT_TASK_ACTION = ActionDefinition(
|
||||
|
|
@ -21,7 +26,7 @@ AGENT_TASK_ACTION = ActionDefinition(
|
|||
name="Agent task",
|
||||
description="Run an agent task with a scoped tool allowlist.",
|
||||
params_schema=AgentTaskActionParams.model_json_schema(),
|
||||
handler=_handle_agent_task,
|
||||
build_handler=_build_handler,
|
||||
)
|
||||
|
||||
register_action(AGENT_TASK_ACTION)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue