-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: module 'streamlit' has no attribute '_DeltaGenerator' #8
Comments
what is the version of your streamlit? |
streamlit version:1.33.0 |
it seems _DeltaGenerator attribute has been removed in streamlit 1.33.0. |
I have solved this error using your way,thanks |
which version did you use? |
I plan to release version 1.1.12 next week which will solve this problem. |
- 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`
when i run example.py, I met this error
The text was updated successfully, but these errors were encountered: