- Refinement of the chat client to have better visible clues for user vs chatbot messages

- Introduction of interview_phase and normal phase in TRAICIE_SELECTION_SPECIALIST to make interaction with bot more human.
- More and random humanised messages to TRAICIE_SELECTION_SPECIALIST
This commit is contained in:
Josako
2025-08-02 16:36:41 +02:00
parent 998ddf4c03
commit 9a88582fff
50 changed files with 2064 additions and 384 deletions

View File

@@ -10,7 +10,8 @@
<!-- Custom theme colors from tenant settings -->
<style>
:root {
/* Legacy support - keeping for backward compatibility */
/* Legacy support - keeping for backward compatibility only */
/* These variables are deprecated and should not be used in new code */
--primary-color: {{ customisation.active_background_color|default('#ffffff') }};
--secondary-color: {{ customisation.active_text_color|default('#212529') }};
@@ -28,13 +29,18 @@
/* Active elements customisation */
--active-background-color: {{ customisation.active_background_color|default('#ffffff') }};
--active-text-color: {{ customisation.active_text_color|default('#212529') }};
/* History customisation with alpha-based color manipulation */
--history-background: {{ customisation.history_background|default(10)|adjust_color_alpha }};
--history-user-message-background: {{ customisation.history_user_message_background|default(-10)|adjust_color_alpha }};
--history-ai-message-background: {{ customisation.history_ai_message_background|default(0)|adjust_color_alpha }};
--history-message-text-color: {{ customisation.history_message_text_color|default('#212529') }};
/* AI Message Colors */
--ai-message-background: {{ customisation.ai_message_background|default('#f5f7fa') }};
--ai-message-text-color: {{ customisation.ai_message_text_color|default('#212529') }};
/* Human Message Colors */
--human-message-background: {{ customisation.human_message_background|default('#ffffff') }};
--human-message-text-color: {{ customisation.human_message_text_color|default('#212529') }};
}
</style>