MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / api_bulk_create_actions

Function api_bulk_create_actions

backend/app/routes/tool/action.py:21–31  ·  view source on GitHub ↗
(
    request: Request,
    data: ActionBulkCreateRequest,
    auth_info: Dict = Depends(auth_info_required),
)

Source from the content-addressed store, hash-verified

19 response_model=BaseDataResponse,
20)
21async def api_bulk_create_actions(
22 request: Request,
23 data: ActionBulkCreateRequest,
24 auth_info: Dict = Depends(auth_info_required),
25):
26 actions: List[Action] = await bulk_create_actions(
27 openapi_schema=data.openapi_schema,
28 authentication=data.authentication,
29 )
30 results = [action.to_response_dict() for action in actions]
31 return BaseDataResponse(data=results)
32
33
34@router.post(

Callers

nothing calls this directly

Calls 3

bulk_create_actionsFunction · 0.90
BaseDataResponseClass · 0.90
to_response_dictMethod · 0.45

Tested by

no test coverage detected