| class FashionAnalyzer: | |
| async def analyze(self, image): | |
| return { | |
| "style": "streetwear", | |
| "colors": ["black", "white"], | |
| "recommendations": [ | |
| "oversized tee", | |
| "layered chain" | |
| ] | |
| } |
| class FashionAnalyzer: | |
| async def analyze(self, image): | |
| return { | |
| "style": "streetwear", | |
| "colors": ["black", "white"], | |
| "recommendations": [ | |
| "oversized tee", | |
| "layered chain" | |
| ] | |
| } |