getRuntimeModelMeta function domain exported

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

Metrics

LOC: 4 Complexity: 2 Params: 0

Signature

getRuntimeModelMeta(): : Promise<TrainingMeta | null>

Summary

Returns the training metadata for the stored model, or null.

Source Code

export async function getRuntimeModelMeta(): Promise<TrainingMeta | null> {
  const result = await chrome.storage.local.get(RUNTIME_META_KEY);
  return (result[RUNTIME_META_KEY] as TrainingMeta) ?? null;
}

Dependencies (Outgoing)

graph LR getRuntimeModelMeta["getRuntimeModelMeta"] style getRuntimeModelMeta fill:#dbeafe,stroke:#2563eb,stroke-width:2px click getRuntimeModelMeta "86eb29679dc3224f.html"
TargetType
RUNTIME_META_KEY dynamic_call

Impact (Incoming)

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