You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(apps): destructure heavily-used \models\ groups for readability
Per Kuba's review on #1148 — hoist a camelCase alias for any group used
≥ 2 times in a file, e.g.
const instanceSegmentation = models.instance_segmentation;
const objectDetection = models.object_detection;
Then \`models.instance_segmentation.yolo26n_seg()\` becomes
\`instanceSegmentation.yolo26n_seg()\`. Applied to 14 files where it actually
reduces noise.
Skips aliasing when the camelCase name would shadow an existing local
identifier — common in the LLM/STT/embeddings screens where \`llm\`,
\`speechToText\`, \`imageEmbedding\` etc. already name hook return values
or temporaries.
0 commit comments