chainlit icon indicating copy to clipboard operation
chainlit copied to clipboard

Build Conversational AI in minutes ⚡️

Results 172 chainlit issues
Sort by recently updated
recently updated
newest added

on_settings_update() is called when the user click confirm in the ui I'd like there to be an option to toggle on or off so that the on_settings_update is called as...

enhancement

chainlit app runs properly when freshly run from terminal but fails to reload while saving the changes in prompt.py error: 2024-03-03 00:17:03 - 1 change detected 2024-03-03 00:17:03 - File...

A common scenario is where we want to give custom instructions in the chat input box at the bottom. Currently this is hardcoded `.chainlit/translations/en-US.json` as `...inputBox.input.placeholder = "..."` A way...

**Describe the bug** AWS Cognito requires that calls to `/oauth2/authorize` endpoint must have the `state` parameter `base64` encoded https://docs.aws.amazon.com/cognito/latest/developerguide/authorization-endpoint.html#get-authorize . Chainlit however simply [creates](https://github.com/Chainlit/chainlit/blob/main/backend/chainlit/server.py#L364) a 32 character state [randomly](https://github.com/Chainlit/chainlit/blob/main/backend/chainlit/secret.py#L8) without...

needs-triage

**Describe the bug** The `on_chat_end` hook is called twice. **To Reproduce** Steps to reproduce the behavior: ```python @cl.on_chat_start async def on_chat_start(): print("on_chat_start") @cl.on_chat_end async def end_chat(): print("on_chat_end") ``` 1. Navigate...

needs-triage

This adds a multi-select checkbox type , similar to Actions: ``` options = [ cl.CheckboxGroupOption(name='townhouse', value='townhouse', label='townhouse'), cl.CheckboxGroupOption(name='condo', value='condo', label='condo'), cl.CheckboxGroupOption(name='single_family', value='single_family', label='single_family'), cl.CheckboxGroupOption(name='multi_family', value='multi_family', label='multi_family'), cl.CheckboxGroupOption(name='land', value='land', label='land'), cl.CheckboxGroupOption(name='other',...

**Describe the bug** We use a chainlit setup with chat_persistence and on_chat_resume. If we start a chat with one message, then cause a websocket disconnect by, for example, restarting the...

bug

**Is your feature request related to a problem? Please describe.** I am hosting the app in front of a load balancer that does the Authentication and the results are sent...

needs-triage

The resume feature for chats operates smoothly, allowing conversations to continue without interruption. However, it lacks a crucial function: it does not display the dates of previous interactions. This omission...

needs-triage

**Describe the bug** Header button Visibility Not Working **To Reproduce** Delete Readme button from Project setings. Click next to the chat button. Althogh button not visible, it is still clickable...

needs-triage