(key)
| 178 | } |
| 179 | |
| 180 | export function resetSystemPrompt(key) { |
| 181 | if (key) { |
| 182 | if (_state.systemPrompts && SYSTEM_PROMPT_KEYS.has(key)) delete _state.systemPrompts[key]; |
| 183 | } else { |
| 184 | _state.systemPrompts = {}; |
| 185 | } |
| 186 | persist(); |
| 187 | return getSystemPrompts(); |
| 188 | } |
| 189 | |
| 190 | // ─── Credentials (v2.0.56 runtime rotation) ──────────────────────────── |
| 191 |
no test coverage detected