CurrentAgentTools returns the tools available to the current agent.
(ctx context.Context)
| 219 | |
| 220 | // CurrentAgentTools returns the tools available to the current agent. |
| 221 | func (a *App) CurrentAgentTools(ctx context.Context) ([]tools.Tool, error) { |
| 222 | return a.runtime.CurrentAgentTools(ctx) |
| 223 | } |
| 224 | |
| 225 | // agentConfigProvider is an optional runtime capability: exposing an agent's |
| 226 | // static configuration (toolsets, sub-agents, handoffs, fallbacks) by name. |
nothing calls this directly
no test coverage detected