botserver/templates/llm-tools.gbai/llm-tools.gbdialog/get-price.bas

7 lines
185 B
QBasic
Raw Normal View History

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