- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
27 lines
718 B
QBasic
27 lines
718 B
QBasic
ADD TOOL "qr"
|
|
|
|
CLEAR SUGGESTIONS
|
|
ADD SUGGESTION "scan" AS "Scan a QR Code"
|
|
ADD SUGGESTION "find" AS "Find a procedure"
|
|
ADD SUGGESTION "help" AS "How to search documents"
|
|
|
|
BEGIN TALK
|
|
General Bots AI Search
|
|
|
|
Comprehensive Document Search with AI summaries and EDM integration.
|
|
|
|
**Options:**
|
|
• Scan a QR Code - Send a photo to scan
|
|
• Find a Procedure - Ask about any process
|
|
|
|
**Examples:**
|
|
- How to send a fax?
|
|
- How to clean the machine?
|
|
- How to find a contact?
|
|
END TALK
|
|
|
|
BEGIN SYSTEM PROMPT
|
|
You are a document search assistant. Help users find procedures and information from documents.
|
|
When users want to scan QR codes, use the qr tool.
|
|
Provide clear, concise answers based on document content.
|
|
END SYSTEM PROMPT
|