NaviAIgate Team Presents: SmartDesign AI

Bridging the gap between the "White Box" and the dream home.

Video Presentation

Product Description & Technical Overview

What is being shown & How it relates to the problem/solution:

Our video demonstrates the complete user flow of our AI-powered interior design tool. It directly addresses the "White Box" Trap and the "Cost of Guessing" problems faced by homeowners in Uzbekistan.

  • Upload: The user uploads a photo of their room (Step 1).
  • Configure: They select a Style (e.g., Modern, National) and set a Budget (Step 2).
  • Result: The AI instantly generates a photorealistic design complete with a shoppable list of furniture items available at local stores (Dafna, AIKO), all priced in UZS (Step 3). This eliminates the visualization gap and ensures the design is immediately actionable.

Stack, Technologies, and AI Solutions Used:

  • Java Spring Boot: Core Backend
  • Python FastAPI: AI Engine - Multimodal RAG & Vector Search
  • Typescript/React/Next.js: Frontend

Roadmap Stage & Next Steps:

The project is currently in the Prototype Phase - Demo Version.

Our next steps involve Integration with 5 Major Retailers (Dafna, AIKO, etc.) and focusing on AR Mobile App & Bank Installments (Q1 2026)..

Link to a Working Prototype

Try Live Prototype Now

API Access Example

Below is an example of the JSON structure used to interact with our Python FastAPI AI Engine for image-to-image design transformation.

REQUEST

{
  "roomType": "string",
  "style": "string",
  "images": ["base64string1", "base64string2", "..."]
}

RESPONSE

{
  "image_id": "8d0f8d28-2e0b-4a51-8579-42e0a6b75b98",
  "prompt_used": "Transform this living room into a modern styled interior.",
  "original_images": [
    "uploads/original/8d0f8d28-2e0b-4a51-8579-42e0a6b75b98_0.png",
    "uploads/original/8d0f8d28-2e0b-4a51-8579-42e0a6b75b98_1.png"
  ],
  "edited_image_path": "uploads/edited/8d0f8d28-2e0b-4a51-8579-42e0a6b75b98_edited.png",
  "edited_image_base64": "iVBORw0KGgoAAAANSUhEUgAA..."
}