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)
| Target | Type |
|---|---|
| RUNTIME_META_KEY | dynamic_call |
Impact (Incoming)
| Source | Type |
|---|---|
| handle | uses |