| 1 | package main |
| 2 | |
| 3 | import "reasonix/internal/config" |
| 4 | |
| 5 | // rebindEffortModel commits the model/effort pair under the caller's tab lock. |
| 6 | func (t *WorkspaceTab) rebindEffortModel(cfg *config.Config, model string) { |
| 7 | t.effort = config.RebindSessionEffort(cfg, t.model, model, t.effort) |
| 8 | t.model = model |
| 9 | } |
| 10 |