| 7 | ) |
| 8 | |
| 9 | type SpawnTool struct { |
| 10 | spawner SubTurnSpawner |
| 11 | defaultModel string |
| 12 | maxTokens int |
| 13 | temperature float64 |
| 14 | allowlistCheck func(targetAgentID string) bool |
| 15 | } |
| 16 | |
| 17 | // Compile-time check: SpawnTool implements AsyncExecutor. |
| 18 | var _ AsyncExecutor = (*SpawnTool)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected