MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / derefTaskWait

Function derefTaskWait

agent/agent_tool.go:461–469  ·  view source on GitHub ↗
(input any)

Source from the content-addressed store, hash-verified

459}
460
461func derefTaskWait(input any) TaskWaitInput {
462 if v, ok := input.(*TaskWaitInput); ok && v != nil {
463 return *v
464 }
465 if v, ok := input.(TaskWaitInput); ok {
466 return v
467 }
468 return TaskWaitInput{}
469}
470
471func derefTaskStop(input any) TaskStopInput {
472 if v, ok := input.(*TaskStopInput); ok && v != nil {

Callers 1

NewTaskWaitToolFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected