(_index: number, option: SelectOption | null)
| 351 | } |
| 352 | |
| 353 | const selectModelOption = (_index: number, option: SelectOption | null) => { |
| 354 | const item = toModelSelectItem(option, filteredModelItems) |
| 355 | if (item) { |
| 356 | selectModel(item) |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | const resetAgent = async () => { |
| 361 | const session = sessionRef.current |
nothing calls this directly
no test coverage detected