chainlit
chainlit copied to clipboard
How do I remove the powered by chainlit in the footer? I cannot see it in readme.md
How do I remove this powered by chainlit from the UI?
with custom css you can as a walkarround
/* Hide readme button */
.css-8kxmdr {
visibility: hidden !important;
}
/* Hide Chat button */
.css-plyx71 {
visibility: hidden !important;
}
/* Logo */
.css-12hxhao {
visibility: hidden !important;
}
/* chainlit footer */
.css-1705j0v {
visibility: hidden !important;
}
You can use custom css with the .watermark class to hide "Built with Chainlit".