Skip to content

Commit

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

Nothing is unreleased!

## [0.7.604] - 2023-11-15

### Fixed

- `on_chat_resume` now works properly with non json serializable objects
- `LangchainCallbackHandler` no longer send tokens to the wrong user under high concurrency
- Langchain cache should work when `cache` is to `true` in `config.toml`

## [0.7.603] - 2023-11-15

### Fixed
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 = "0.7.604rc2"
version = "0.7.604"
keywords = ['LLM', 'Agents', 'gen ai', 'chat ui', 'chatbot ui', 'langchain']
description = "A faster way to build chatbot UIs."
authors = ["Chainlit"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function WaterMark() {
const { theme } = useRecoilValue(settingsState);
const src = theme === 'light' ? LogoLight : LogoDark;
return (
<Stack mx="auto">
<Stack mx="auto" className="watermark">
<a
href="https://github.com/Chainlit/chainlit"
target="_blank"
Expand Down

0 comments on commit 60c96f0

Please sign in to comment.