deleteRuntimeModel function domain exported

Last updated: 2026-02-24T19:46:21.733Z

Metrics

LOC: 8 Complexity: 1 Params: 0

Signature

deleteRuntimeModel(): : Promise<void>

Summary

Deletes the runtime-trained model from storage.

Source Code

export async function deleteRuntimeModel(): Promise<void> {
  await chrome.storage.local.remove([
    RUNTIME_MODEL_KEY,
    RUNTIME_VOCAB_KEY,
    RUNTIME_LABELS_KEY,
    RUNTIME_META_KEY,
  ]);
}

No outgoing dependencies.

Impact (Incoming)

graph LR deleteRuntimeModel["deleteRuntimeModel"] handle["handle"] handle -->|uses| deleteRuntimeModel style deleteRuntimeModel fill:#dbeafe,stroke:#2563eb,stroke-width:2px click deleteRuntimeModel "617743c800b09f33.html" click handle "4ec56f844308ba0c.html"
SourceType
handle uses