7 lines
316 B
QBasic
7 lines
316 B
QBasic
PARAM product_id AS INTEGER
|
|
PARAM quantity AS INTEGER OPTIONAL
|
|
|
|
product = PRODUCT product_id
|
|
shipping = LLM "Calculate shipping for: " + product + ", qty: " + quantity + ". Return JSON {dimensions: {length_cm, width_cm, height_cm}, weight_kg, volume_cm3, shipping_options: [{carrier, cost, days}]}"
|
|
|
|
RETURN shipping
|