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
17 lines
349 B
QBasic
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"
|