How I Got Users to Willingly Wait 1 Minute for an API Call (Without Over-Engineering)
The article discusses how the author improved user experience during a lengthy API call for an AI garden visualizer app. Instead of trying to eliminate the wait time, the author chose to utilize it by displaying helpful gardening tips. This approach transformed the waiting period into a valuable learning experience for users, enhancing the app's identity as a gardening companion.
- ▪The image generation API used in the app can take close to a minute to return results.
- ▪Instead of hiding the wait time, the app displays illustrated gardening tips during the processing phase.
- ▪This shift in perspective made the waiting time feel productive for users, enhancing their overall experience.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 904121) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Cathy Lai Posted on May 24 How I Got Users to Willingly Wait 1 Minute for an API Call (Without Over-Engineering) #ai #devjournal #buildinpublic #ux AI-Assisted Garden Makeover App "Ez Garden Visualizer" - From Idea to Reality (5 Part Series) 1 How I Stopped Despairing Over the Backyard Mess and Started an AI Side Project 2 From the Concept to Reality: Building "Ez Garden Visualizer" in Stages 3 "Hello World" OpenAI API Script for Image Edit 4 AI Assisted GUI Took Seconds 5 How I Got…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).