Strange outcome I'm having with API generations - for some reason the same stock photos keep appearing in generations with different themes and image styles selected - any idea how i can keep these same images from popping up? Seems like they're in @75% of the gestational from this prompt - two links for examples https://gamma.app/docs/Your-Home-Your-Options-wmtooclbtzxufr4?mode=doc and a 2nd one https://gamma.app/docs/Your-Home-Your-Options-Your-Best-Outcome-9meenchkrs54fsg?mode=doc One more: https://gamma.app/docs/Your-Home-Your-Next-Chapter-oxxmjgh0yfeocec Im familiar with these images - I've used them in other places but not in gamma. Multiple users across the country use our api for generation and some get these images pulled in, some do not. Just have no idea how they're getting in.
Hey Doug โ I traced one of the requests behind these generations and found where the repeated images are coming from. In the generation request, the POST /v1.0/generations payload uses inputText as a plain string field. In the requests I checked, that string already contains image-bearing fields like photo, logo, sectionImage, and bannerImage, with embedded <img src="..."> URLs. Because those image URLs are already present in the content being sent to Gamma, they can carry through into the generated output. That means the repeated images are not being chosen by Gamma's image generation step. They're being supplied upstream in the request body. That also explains why changing the theme or image style doesn't change those photos โ those settings apply to images Gamma generates itself, not to image URLs that are already embedded in inputText. If you want those images to stop showing up, the fix is to remove or replace those image fields before sending the request. If you want listing-specific visuals, send listing-specific image URLs there. If you want Gamma to generate fresh visuals instead, leave those image fields out of the request entirely. If useful, I can also help you narrow down exactly which fields in your request builder should be removed or swapped out.
Thank you! Didn't realize those were in the prompts.
