()
| 133 | } |
| 134 | |
| 135 | function clearModelSettings() { |
| 136 | const reset = {}; |
| 137 | for (const key of MODEL_KEYS) { |
| 138 | reset[key] = ""; |
| 139 | } |
| 140 | return writeEnvSettings(reset); |
| 141 | } |
| 142 | |
| 143 | function setWorkspacePath(nextPath) { |
| 144 | if (!nextPath || typeof nextPath !== "string") return false; |
no test coverage detected