(modelName: string | null)
| 14 | * Used for unauthenticated users |
| 15 | */ |
| 16 | export function persistModelName(modelName: string | null): void { |
| 17 | const globalContext = new GlobalContext(); |
| 18 | globalContext.update("cliSelectedModel", modelName ?? undefined); |
| 19 | } |
no test coverage detected