MCPcopy Create free account
hub / github.com/pollinations/pollinations / loadExamples

Function loadExamples

apps/catgpt/script.js:355–368  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

353}
354
355function loadExamples() {
356 dom.examplesGrid.innerHTML = "";
357 EXAMPLE_PROMPTS.forEach((q, i) => {
358 const card = createMemeCard(
359 q,
360 i,
361 generateImageURL(
362 createImageGenerationPrompt(q, "..."),
363 activeModel,
364 ),
365 );
366 if (card) dom.examplesGrid.appendChild(card);
367 });
368}
369
370// ── Generator ────────────────────────────────────────────────────────────────
371

Callers 1

script.jsFile · 0.85

Calls 3

generateImageURLFunction · 0.90
createMemeCardFunction · 0.85

Tested by

no test coverage detected