Spaces:
Sleeping
Sleeping
File size: 11,066 Bytes
0bb49b0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | """
Gemini AI Client Module
Central AI engine for body measurements and recommendations.
"""
import json
import base64
import logging
import re
from typing import Dict, List, Optional, Tuple
from django.conf import settings
logger = logging.getLogger(__name__)
try:
import google.generativeai as genai
GEMINI_AVAILABLE = True
except ImportError:
GEMINI_AVAILABLE = False
logger.warning("google-generativeai package not installed. Run: pip install google-generativeai")
class GeminiClient:
"""
Wrapper around Google Gemini API for fashion AI tasks.
"""
# gemini-2.5-flash: fastest valid model as of Feb 2026
MODEL_NAME = "gemini-2.5-flash"
def __init__(self, api_key: str = None):
self.api_key = api_key or getattr(settings, 'GEMINI_API_KEY', None)
self.model = None
self.available = False
if not GEMINI_AVAILABLE:
return
if not self.api_key:
logger.error("No Gemini API key configured.")
return
try:
genai.configure(api_key=self.api_key)
# Using system_instruction to set the "persona" permanently for the model
self.model = genai.GenerativeModel(
model_name=self.MODEL_NAME,
system_instruction="You are an expert anthropometric AI. Your goal is to visually analyze human body proportions and provide highly accurate clothing size and measurement data."
)
self.available = True
logger.info(f"Gemini AI client ({self.MODEL_NAME}) initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize Gemini: {e}")
def _encode_image_for_gemini(self, image_bytes: bytes, mime_type: str = "image/jpeg") -> dict:
return {
"mime_type": mime_type,
"data": base64.b64encode(image_bytes).decode("utf-8")
}
def _parse_json_response(self, text: str) -> dict:
json_match = re.search(r'```(?:json)?\s*\n?(.*?)\n?\s*```', text, re.DOTALL)
if json_match:
text = json_match.group(1)
json_obj_match = re.search(r'(\{.*\})', text, re.DOTALL)
if json_obj_match:
text = json_obj_match.group(1)
try:
return json.loads(text)
except json.JSONDecodeError as e:
logger.error(f"Failed to parse JSON: {e}")
return {}
def analyze_body(
self,
front_image_bytes: bytes,
side_image_bytes: bytes = None,
reference_height_cm: float = None
) -> Dict:
if not self.available:
raise RuntimeError("Gemini AI service is not available")
height_info = f"The person's actual height is {reference_height_cm} cm." if reference_height_cm else "Estimate height based on surroundings."
prompt = f"""Analyze the person in the image(s) for a virtual fitting room.
{height_info}
1. Extract precise body measurements in cm.
2. Identify body shape (hourglass, rectangle, triangle, inverted_triangle, oval).
3. Identify skin tone (light, medium, dark) and undertone (warm, cool).
Return ONLY a JSON object:
{{
"measurements": {{
"height": <cm>,
"shoulder_width": <cm>,
"chest": <cm>,
"waist": <cm>,
"hip": <cm>,
"torso_length": <cm>,
"arm_length": <cm>,
"inseam": <cm>
}},
"body_shape": "...",
"skin_tone": "...",
"undertone": "...",
"confidence": <0.0-1.0>
}}"""
content_parts = [prompt, self._encode_image_for_gemini(front_image_bytes)]
if side_image_bytes:
content_parts.append(self._encode_image_for_gemini(side_image_bytes))
response = self.model.generate_content(content_parts)
result = self._parse_json_response(response.text)
if not result or "measurements" not in result:
raise ValueError("Incomplete data from Gemini")
result["measurements"] = self._validate_measurements(result["measurements"], reference_height_cm)
return result
def _validate_measurements(self, raw: Dict, reference_height: float = None) -> Dict[str, float]:
"""Validates measurements without 'flattening' the person's unique shape."""
validated = {}
# Get height first as it is our primary scale
height = float(raw.get("height", reference_height or 175))
if reference_height: height = reference_height
# Dynamic ratios: We allow a range rather than a fixed multiplier
# This prevents an athletic person from being 'clamped' into a rectangle shape
proportions = {
"shoulder_width": (0.20, 0.35), # 20% to 35% of height
"chest": (0.45, 0.75),
"waist": (0.35, 0.70),
"hip": (0.45, 0.75),
"torso_length": (0.25, 0.35),
"arm_length": (0.30, 0.40),
"inseam": (0.40, 0.50),
}
validated["height"] = height
for key, (min_ratio, max_ratio) in proportions.items():
val = float(raw.get(key, height * ((min_ratio + max_ratio) / 2)))
# Check if value is within a 'realistic' human ratio
lower_bound = height * min_ratio
upper_bound = height * max_ratio
# Clamp to the bounds to avoid 'impossible' measurements
final_val = max(lower_bound, min(upper_bound, val))
validated[key] = round(final_val * 2) / 2 # Round to nearest 0.5cm
return validated
def get_size_recommendation(self, measurements: Dict, garment_type: str, body_shape: str = "rectangle", available_sizes: List[str] = None) -> Dict:
if not self.available:
raise RuntimeError("Gemini AI is not available for size recommendation")
if available_sizes is None:
available_sizes = ["XS", "S", "M", "L", "XL", "XXL"]
prompt = f"""You are an expert fashion sizing specialist.
Analyze the following body measurements and recommend the single best clothing size.
Body Measurements (all values in centimetres):
{json.dumps(measurements, indent=2)}
Garment Type: {garment_type}
Body Shape: {body_shape}
Available Sizes: {', '.join(available_sizes)}
Use your expert knowledge of international sizing standards.
Do NOT apply fixed thresholds — reason holistically from ALL measurements (chest, waist, hips, shoulder width, height, etc.).
Consider the garment type and body shape when deciding between borderline sizes.
Return ONLY a valid JSON object:
{{
"recommended_size": "<one of the available sizes>",
"fit_type": "<slim, regular, or oversize>",
"reasoning": "<one sentence explaining why this size fits best>"
}}"""
response = self.model.generate_content(prompt)
result = self._parse_json_response(response.text)
if not result or "recommended_size" not in result:
raise ValueError("Gemini failed to return a valid size recommendation")
recommended = result["recommended_size"]
if recommended not in available_sizes:
raise ValueError(
f"Gemini returned size '{recommended}' which is not in available sizes {available_sizes}"
)
if result.get("fit_type") not in ["slim", "regular", "oversize"]:
result["fit_type"] = "regular"
logger.info(f"Gemini size recommendation: {recommended} ({result.get('reasoning', '')})")
return result
def get_color_recommendations(self, skin_tone: str, undertone: str = "warm", body_shape: str = "rectangle", garment_type: str = None) -> Dict:
"""
Ask Gemini to pick exactly ONE shirt colour and ONE pants colour
from the pre-approved palette for the given skin tone.
Returns:
dict with keys 'recommended_shirt' and 'recommended_pants'
(both are exact colour name strings from color_palettes.py).
"""
if not self.available:
raise RuntimeError("Gemini AI is not available for color recommendations")
from fitting_system.color_palettes import get_shirt_color_names, get_pants_color_names
shirt_options = get_shirt_color_names(skin_tone)
pants_options = get_pants_color_names(skin_tone)
prompt = f"""You are an expert fashion color consultant.
Person's profile:
- Skin tone: {skin_tone}
- Undertone: {undertone}
- Body shape: {body_shape}
Available shirt colors (pick exactly ONE): {', '.join(shirt_options)}
Available pants colors (pick exactly ONE): {', '.join(pants_options)}
Choose the single best shirt color and single best pants color from the lists above.
You MUST only use color names from the provided lists. Do NOT invent new colors.
Return ONLY a JSON object:
{{"recommended_shirt": "<one of the shirt colors>", "recommended_pants": "<one of the pants colors>"}}"""
response = self.model.generate_content(prompt)
result = self._parse_json_response(response.text)
rec_shirt = result.get("recommended_shirt", "")
rec_pants = result.get("recommended_pants", "")
# Validate – fall back to first option if Gemini hallucinated
if rec_shirt not in shirt_options:
logger.warning(f"Gemini returned invalid shirt color '{rec_shirt}', falling back to '{shirt_options[0]}'")
rec_shirt = shirt_options[0]
if rec_pants not in pants_options:
logger.warning(f"Gemini returned invalid pants color '{rec_pants}', falling back to '{pants_options[0]}'")
rec_pants = pants_options[0]
return {"recommended_shirt": rec_shirt, "recommended_pants": rec_pants}
def get_styling_advice(self, measurements: Dict, body_shape: str, skin_tone: str, undertone: str = "warm") -> str:
if not self.available:
raise RuntimeError("Gemini AI is not available for styling advice")
prompt = f"""You are a personal fashion stylist. Give brief, practical styling advice.
Person's profile:
- Body shape: {body_shape}
- Skin tone: {skin_tone} with {undertone} undertone
- Measurements: {json.dumps(measurements)}
Give 3-4 concise styling tips specific to their body type and coloring. Return plain text."""
response = self.model.generate_content(prompt)
return response.text.strip()
# ---------------------------------------------------------------------------
# Singleton accessor
# ---------------------------------------------------------------------------
_gemini_client_instance = None
def get_gemini_client() -> GeminiClient:
"""Return the global GeminiClient singleton."""
global _gemini_client_instance
if _gemini_client_instance is None:
_gemini_client_instance = GeminiClient()
return _gemini_client_instance |