Build python production-ready conversational AI applications in minutes, not weeks β‘οΈ
β οΈ Notice: Chainlit is now community-maintained.As of May 1st 2025, the original Chainlit team has stepped back from active development. The project is maintained by @Chainlit/chainlit-maintainers under a formal Maintainer Agreement.
Maintainers are responsible for code review, releases, and security.
Chainlit SAS provides no warranties on future updates.Want to help maintain? Apply here β
Website β’ Documentation β’ Chainlit Help β’ Cookbook
overview-chainlit.mp4
Open a terminal and run:
pip install chainlit
chainlit helloIf this opens the hello app in your browser, you're all set!
The latest in-development version can be installed straight from GitHub with:
pip install git+https://github.com/Chainlit/chainlit.git#subdirectory=backend/(Requires Node and pnpm installed on the system.)
Create a new file demo.py with the following code:
import chainlit as cl
@cl.step(type="tool")
async def tool():
# Fake tool
await cl.sleep(2)
return "Response from the tool!"
@cl.on_message # this function will be called every time a user inputs a message in the UI
async def main(message: cl.Message):
"""
This function is called every time a user inputs a message in the UI.
It sends back an intermediate response from the tool, followed by the final answer.
Args:
message: The user's message.
Returns:
None.
"""
# Call the tool
tool_res = await tool()
await cl.Message(content=tool_res).send()Now run it!
chainlit run demo.py -wYou can find various examples of Chainlit apps here that leverage tools and services such as OpenAI, AnthropiΡ, LangChain, LlamaIndex, ChromaDB, Pinecone and more.
Tell us what you would like to see added in Chainlit using the Github issues or on Discord.
As an open-source initiative in a rapidly evolving domain, we welcome contributions, be it through the addition of new features or the improvement of documentation.
For detailed information on how to contribute, see here.
Chainlit is open-source and licensed under the Apache 2.0 license.
Chainlit supports two data layers:
- Postgres (default): high-scale, uses asyncpg
- SQLite: simple local persistence, uses SQLAlchemy + aiosqlite
Select the backend via the DATABASE_URL environment variable:
- Postgres example:
DATABASE_URL=postgresql+asyncpg://user:pass@host:5432/db - SQLite example:
DATABASE_URL=sqlite+aiosqlite:///./chainlit.db
Notes
- When DATABASE_URL starts with
sqlite, Chainlit will automatically use the SQLAlchemy data layer. - To force a specific implementation, set CHAINLIT_DATA_LAYER:
CHAINLIT_DATA_LAYER=sqlalchemyto force SQLAlchemy (e.g., for SQLite)CHAINLIT_DATA_LAYER=asyncpgto force Postgres implementation
- Cloud storage (S3/GCS/Azure) configuration is shared across both data layers via environment variables (
BUCKET_NAME,APP_AWS_*,APP_GCS_*,APP_AZURE_*). - Schema: Chainlit does not manage database migrations. Ensure required tables exist before running. For SQLite quick starts, see tests at
backend/tests/data/test_sql_alchemy.pyfor create table statements you can adapt. - Schema: Chainlit does not manage database migrations. Ensure required tables exist before running. For SQLite quick starts, use
backend/chainlit/data/sqlite_schema.sql.
Quick start for SQLite (optional)
- Create the database file and schema (one-time):
- On macOS/Linux:
sqlite3 chainlit.db < backend/chainlit/data/sqlite_schema.sql
- On macOS/Linux:
- Run Chainlit with:
DATABASE_URL=sqlite+aiosqlite:///./chainlit.db chainlit run demo.py
