botserver/web/app/index.html
Rodrigo Rodriguez (Pragmatismo) 6f59cdaab6 feat(auth): add suggestion support and clean up code
- Added new ADD_SUGGESTION keyword handler to support sending suggestions in responses
- Removed unused env import in hear_talk module
- Simplified bot_id assignment to use static string
- Added suggestions field to BotResponse struct
- Improved SET_CONTEXT keyword to take both name and value parameters
- Fixed whitespace in auth handler
- Enhanced error handling for suggestion sending

The changes improve the suggestion system functionality while cleaning up unused code and standardizing response handling.
2025-10-31 20:55:13 -03:00

21 lines
353 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>General Bots</title>
</head>
<body>
<app></app>
<script src="https://unpkg.com/riot@10/riot+compiler.min.js"></script>
<script src="app.html" type="riot"></script>
<script>
riot.compile().then(() => {
riot.mount('app');
});
</script>
</body>
</html>