find_fashion_items
Identify, compare, and shop fashion from an image or link. Use for clothing, shoes, bags, jewelry, or accessories in uploaded photos, layered outfits, screenshots, direct image URLs, and TikTok, Instagram, Pinterest, blog, or product links. Remode returns shopping-relevant matches with live retailer names, localized prices, buy links, and second-hand options.
Parameters5
| link | string | optional | TikTok, Pinterest, product page, blog, or direct image link to search from. |
| image_url | string | optional | Direct HTTPS image URL to run through Remode visual search. |
| image_file | object | optional | Image file uploaded by the user. ChatGPT supplies this via _meta.openai/fileParams. |
| region | string | optional | Two-letter shopping region/country code, such as US, CH, DE, or GB. |
| max_results | integer | optional | Maximum new retail matches to return. Defaults to the backend setting. |
Raw schema
{
"type": "object",
"properties": {
"link": {
"description": "TikTok, Pinterest, product page, blog, or direct image link to search from.",
"type": "string",
"format": "uri"
},
"image_url": {
"description": "Direct HTTPS image URL to run through Remode visual search.",
"type": "string",
"format": "uri"
},
"image_file": {
"description": "Image file uploaded by the user. ChatGPT supplies this via _meta.openai/fileParams.",
"type": "object",
"properties": {
"download_url": {
"type": "string",
"format": "uri",
"description": "Temporary HTTPS URL supplied by the assistant host for an uploaded image."
},
"file_id": {
"type": "string",
"minLength": 1,
"description": "Stable file identifier supplied by the assistant host."
},
"mime_type": {
"type": "string"
},
"file_name": {
"type": "string"
}
},
"required": [
"download_url",
"file_id"
],
"additionalProperties": {}
},
"region": {
"description": "Two-letter shopping region/country code, such as US, CH, DE, or GB.",
"type": "string",
"minLength": 2,
"maxLength": 8
},
"max_results": {
"description": "Maximum new retail matches to return. Defaults to the backend setting.",
"type": "integer",
"minimum": 1,
"maximum": 15
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}