- Define a
CHAINLIT_AUTH_SECRET
environment variable. This is a secret string that is used to sign the authentication tokens. You can change it at any time, but it will log out all users. You can easily generate one usingchainlit create-secret
. - Add one or more authentication callbacks to your app:
Password Auth
Authenticate users with login/password.
OAuth
Authenticate users with your own OAuth app (like Google).
Header
Authenticate users based on a custom header.
cl.User
object. If the callback returns None
, the authentication is considered as failed.
Make sure each user has a unique identifier to prevent them from sharing their
data.