SetAgentModel sets a model override for the named agent. modelRef can be: - "" (empty) to clear the override and use the agent's default model - A model name from the config (e.g., "my_fast_model") - An inline spec (e.g., "openai/gpt-4o") Returns [ErrUnsupported] for runtimes that don't expose model
(ctx context.Context, agentName, modelRef string)
| 134 | // Returns [ErrUnsupported] for runtimes that don't expose model |
| 135 | // switching (e.g. remote runtimes, where the server owns the choice). |
| 136 | SetAgentModel(ctx context.Context, agentName, modelRef string) error |
| 137 | |
| 138 | // CycleAgentThinkingLevel advances the named agent's thinking-effort |
| 139 | // level to the next value in its provider's cycle (wrapping around), |
no outgoing calls
no test coverage detected