bottemplates/store-server.gbai/store-server.gbdialog/scan-product-image.bas

13 lines
301 B
QBasic
Raw Normal View History

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