botserver/templates/ai-search.gbai/ai-search.gbdialog/qr.bas
Rodrigo Rodriguez (Pragmatismo) 5d21bba1e1 ``` Add KB Statistics keywords and infrastructure documentation
- Add KB Statistics keywords for Qdrant vector database monitoring: KB
  STATISTICS, KB COLLECTION STATS, KB DOCUMENTS COUNT, KB DOCUMENTS
  ADDED SINCE, KB LIST COLLECTIONS, KB STORAGE SIZE

- Add comprehensive infrastructure documentation:
  - Scaling and load balancing with LXC containers
  - Infrastructure design with encryption, sharding strategies
  - Observ
2025-11-30 16:25:51 -03:00

13 lines
419 B
QBasic

PARAM doc AS QRCODE LIKE "photo of QR code" DESCRIPTION "QR Code image to scan and load document"
DESCRIPTION "Scan a QR Code to load and query a document"
text = GET doc
IF text THEN
SET CONTEXT "Based on this document, answer the person's questions:\n\n" + text
TALK "Document ${doc} loaded. You can ask me anything about it."
SEND FILE doc
ELSE
TALK "Document not found, please try again."
END IF