13 lines
301 B
QBasic
13 lines
301 B
QBasic
|
|
PARAM image AS STRING
|
||
|
|
|
||
|
|
description = SEE image
|
||
|
|
similar = SEARCH PRODUCTS description, 5
|
||
|
|
|
||
|
|
IF LEN(similar) > 0 THEN
|
||
|
|
RETURN similar[0]
|
||
|
|
END IF
|
||
|
|
|
||
|
|
product = LLM "Extract product info from: " + description + ". Return JSON {name, brand, category, color, material}"
|
||
|
|
SAVE "products", product
|
||
|
|
RETURN product
|