sadickam commited on
Commit
d93fa4c
·
1 Parent(s): dfdced7

feat: introduce a work-in-progress disclaimer notice below the chat input.

Browse files
frontend/src/components/chat/chat-container.tsx CHANGED
@@ -969,6 +969,15 @@ const ChatContainer = forwardRef<HTMLDivElement, ChatContainerProps>(
969
  autoFocus={true}
970
  />
971
  </div>
 
 
 
 
 
 
 
 
 
972
  </div>
973
  </div>
974
  );
 
969
  autoFocus={true}
970
  />
971
  </div>
972
+
973
+ {/*
974
+ * Disclaimer Notice - Work in progress warning.
975
+ * Subtle text below the input to set user expectations.
976
+ */}
977
+ <p className="mt-3 text-center text-xs text-[var(--foreground-muted)]/70">
978
+ This chatbot is a work in progress. Responses may not always be 100% accurate.
979
+ Please verify results through further research.
980
+ </p>
981
  </div>
982
  </div>
983
  );