botserver/templates/ai-search.gbai/ai-search.gbdialog/qr.bas

19 lines
476 B
QBasic
Raw Normal View History

2024-10-02 10:12:03 -03:00
TALK "Please, take a photo of the QR Code and send to me."
HEAR doc as QRCODE
TALK "Reading document " + doc + "..."
text = GET doc
2024-10-02 10:12:03 -03:00
IF text THEN
text = "Based on this document, answer the person's questions:\n\n" + text
SET CONTEXT text
SET ANSWER MODE "document"
TALK "Document ${doc} loaded. You can ask me anything about it."
TALK "I will also send it to you..."
SEND FILE doc
2024-10-02 10:12:03 -03:00
ELSE
TALK "Document was not found, please try again."
END IF