Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure feedback prompts are displayed as coming from Redbox (not User) #434

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions django_app/redbox_app/templates/chats.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ <h3 class="iai-chat-message__sources-heading govuk-heading-s govuk-!-margin-bott
<div class="iai-response-feedback js-response-feedback">
<feedback-buttons class="iai-response-feedback__buttons"></feedback-buttons>
{{ message_box(
role = "AI",
role = "ai",
text = "Thank you for your feedback",
classes = "iai-response-feedback__thumbs-up"
) }}
{{ message_box(
role = "AI",
role = "ai",
text = "Ok. Can you let me know what wasn’t accurate? I can refine it again to make it more accurate.",
classes = "iai-response-feedback__thumbs-down"
) }}
Expand Down
Loading