(failureCount: number)
| 5 | import { queryKeys } from '@/lib/query-keys' |
| 6 | |
| 7 | export function shouldRetryOpencodeModelsQuery(failureCount: number): boolean { |
| 8 | return failureCount < 3 |
| 9 | } |
| 10 | |
| 11 | const MAX_OPENCODE_MODEL_DISCOVERY_POLLS = 10 |
| 12 |
no outgoing calls
no test coverage detected