generalbots/bottemplates/hr/employees.gbai/employees.gbdialog/search-employee.bas
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- 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
2026-04-19 08:14:25 -03:00

25 lines
848 B
QBasic

PARAM searchterm AS STRING LIKE "John" DESCRIPTION "Name, email, or employee number to search for"
DESCRIPTION "Searches for employees in the HR system by name, email, or employee number."
IF searchterm = "" THEN
TALK "What would you like to search for? You can enter a name, email, or employee number."
searchterm = HEAR
END IF
IF searchterm = "" THEN
TALK "I need a search term to find employees."
RETURN
END IF
TALK "🔍 Searching for employees matching: " + searchterm
TALK ""
TALK "To search the employee database, I'll look through the records for you."
TALK "You can search by:"
TALK "• Full name or partial name"
TALK "• Email address"
TALK "• Employee number (e.g., EMP2024-1234)"
TALK ""
TALK "💡 Tip: For best results, use the exact employee number if you have it."
SET BOT MEMORY "last_search", searchterm