jam/js/ui/botui/examples/hello-world/hello-world.js

11 lines
175 B
JavaScript
Raw Normal View History

2025-07-21 23:37:52 +02:00
var botui = new BotUI('hello-world');
botui.message.add({
content: 'Hello World from bot!'
});
botui.message.add({
human: true,
content: 'Hello World from human!'
});