botserver/templates/llm-tools.gbai/llm-tools.gbdialog/get-price.bas
2024-09-01 21:46:55 -03:00

6 lines
185 B
QBasic

PARAM product AS string LIKE "Product A"
DESCRIPTION "Returns the price of the given product."
product = FIND "products.csv", "name LIKE ${product}"
price = product.price
RETURN price