chainlit
chainlit copied to clipboard
Build Conversational AI in minutes ⚡️
Currently, the Chainlit server initialization is configured to use only a single worker, as seen in the [chainlit/cli/init.py](https://github.com/Chainlit/chainlit/blob/main/backend/chainlit/cli/__init__.py#L80). This setup does not take full advantage of the available CPU resources,...
**Describe the bug** chainlit sets up the logging for the application it is in. A library should not do this. **To Reproduce** If you import chainlit first: ``` >>> import...
## Describe the bug The 2.4.400 release, and specifically #2075 fixed the majority of the issues I expressed in #2032, which I greatly appreciate! Unfortunately, there seems to be one...
When using Chainlit’s Microsoft Teams integration, each new user message currently reloads the chat and starts a new thread, causing a loss of conversation context. This makes it difficult to...
BUG : `UndefinedColumnError` when inserting into `steps` table: column "defaultOpen" does not exist
### Problem description While running my Chainlit app, I encountered the following error when trying to insert data into the `steps` table: ``` (sqlalchemy.dialects.postgresql.asyncpg.ProgrammingError) : column "defaultOpen" of relation "steps"...
**Describe the bug** The AzureStorageClient class in chainlit.data.storage_clients.azure implements the upload_file method but does not implement the other abstract methods delete_file and get_read_url from the BaseStorageClient class in base.py. The...
**Is your feature request related to a problem? Please describe.** Is there a way to customize the chat UI to how it used to be? Things like user message on...
**Is your feature request related to a problem? Please describe.** Currently, when using cl.Pdf with an existing file path, Chainlit creates a copy of the file with a new UUID-based...
I'm trying to allow custom routes to access chainlit session. For example, I want this curl to show some text in the chat (for simplicity just looking at the latest...
**Describe the bug** After upgrade from 2.0.2 to 2.0.603 I cannot get custom routes to work, for example https://github.com/Chainlit/cookbook/tree/main/custom-frontend/backend. I've been trying to create the custom endpoint /custom-auth, but the...