(
opts: { resetChat?: boolean } = {},
)
| 309 | * silently re-queued for whatever model they last used. |
| 310 | */ |
| 311 | export function returnToFreebuffLanding( |
| 312 | opts: { resetChat?: boolean } = {}, |
| 313 | ): Promise<void> { |
| 314 | return restartFreebuffSession('landing', { |
| 315 | resetChat: opts.resetChat, |
| 316 | releaseSlot: true, |
| 317 | }) |
| 318 | } |
| 319 | |
| 320 | /** Refresh picker-only metadata (quota and queue depths) while staying on the |
| 321 | * model selection screen. Used when a midnight-Pacific premium quota reset |
no test coverage detected