(agentId: string)
| 446 | * Check if an agent's loop is currently running |
| 447 | */ |
| 448 | export function isAgentLoopRunning(agentId: string): boolean { |
| 449 | return activeLoops[agentId]?.isRunning === true; |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * Get all currently running agent IDs |
no outgoing calls
no test coverage detected