Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
willydouhard committed Jul 2, 2024
1 parent ca0bd11 commit da5b3b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

Nothing unreleased!

## [1.1.306] - 2024-07-02

### Added

- Messages are now editable. You can disable this feature with `config.features.edit_message = false`
- `cl.chat_context` to help keeping track of the messages of the current thread
- You can now enable debug_mode when mounting Chainlit as a sub app by setting the `CHAINLIT_DEBUG` to `true`.

### Fixed

Expand Down
1 change: 1 addition & 0 deletions backend/chainlit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def mount_chainlit(app: FastAPI, target: str, path="/chainlit"):
from chainlit.server import combined_asgi_app as chainlit_app

config.run.root_path = path
config.run.debug = os.environ.get("CHAINLIT_DEBUG", False)

check_file(target)
# Load the module provided by the user
Expand Down
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chainlit"
version = "1.1.305"
version = "1.1.306"
keywords = [
'LLM',
'Agents',
Expand Down

0 comments on commit da5b3b1

Please sign in to comment.