-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix type hint error with streamlit >= 1.33.0 (#8)
- add ChatBox.change_chat_name to rename a chat conversation - maintain a context bound to chat conversation, it is like to be a sub session_state for every chat, context will get changed when you switch chat names. - user can save chat bound values by `ChatBox.context['x'] = 1` - values of widgets specified with a key can be saved to chat context with `ChatBox.context_from_session` and restored to st.session_state by `ChatBox.context_to_session`
- Loading branch information
1 parent
6179c41
commit 62bfbad
Showing
5 changed files
with
138 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ def readme(): | |
|
||
setuptools.setup( | ||
name='streamlit-chatbox', | ||
version='1.1.11', | ||
version='1.1.12', | ||
author='liunux', | ||
author_email='[email protected]', | ||
description='A chat box and some helpful tools used to build chatbot app with streamlit', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters