UV mapping is the process of unfolding a 3D model into a 2D layout so that 2D textures (color, normal, roughness, etc.) can be wrapped around the model. The 'UV' refers to the two axes of the 2D texture space (called U and V to avoid confusion with the X, Y, Z of 3D space). A well-laid-out UV map keeps textures unstretched, hides seams where possible, and uses the available texture space efficiently.
In traditional architectural rendering pipelines, UV mapping matters whenever you're applying texture maps to a model — which is most of the time. A flat sphere mapped poorly will show stretched poles; a complex character model with bad UVs will show distortion at the edges of each UV island. Good UV mapping is often the unglamorous skill that separates amateur from professional 3D work.
AI rendering doesn't require UV mapping at all — there are no textures to wrap. The model takes a 3D screenshot as input and produces a rendered output as a single image. All of the texture work that traditional rendering moved through UV-mapped image files is handled implicitly by the AI's learned representations. This is a substantial workflow simplification: you don't need to model anything other than the geometry you can see, and you don't need to UV-unwrap it.
See also