(opts: &mut SessionOptions, def: &AgentDefinition)
| 31 | } |
| 32 | |
| 33 | fn apply_step_budget(opts: &mut SessionOptions, def: &AgentDefinition) { |
| 34 | if opts.max_tool_rounds.is_none() { |
| 35 | opts.max_tool_rounds = def.max_steps; |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | fn apply_model(opts: &mut SessionOptions, def: &AgentDefinition) { |
| 40 | if opts.model.is_some() { |
no outgoing calls
no test coverage detected