gb/test_begin_blocks.bas
Rodrigo Rodriguez caafad484a fix: ENUM mapping, mail bugs, duplicate messages, and theme selector
Bug fixes in .bas tools:
- Fix BEGIN MAIL email → BEGIN MAIL emailContato in tools 07, 09, 10
- Fix newsletter BOOLEAN → STRING in tool 10 (LLM sends 'Sim' as string)
- Add natural language descriptions to ENUM params in tools 02-10

Botserver:
- Fix duplicate chat message when tool is executed (tool_was_executed flag)

BotUI:
- Remove theme selector button from minimal chat for non-logged users

Testing: All 10 tools verified with NL ENUM mapping and DB records
2026-02-18 20:32:09 +00:00

17 lines
349 B
QBasic

DESCRIPTION "Test BEGIN TALK and BEGIN MAIL preprocessing"
' Test BEGIN TALK block
BEGIN TALK
This is line 1 with ${variable}
This is line 2 with ${anotherVariable}
END TALK
' Test BEGIN MAIL block
BEGIN MAIL test@example.com
Subject: Test Email Subject
This is the body line 1
This is the body line 2 with ${data}
END MAIL
TALK "Test complete"