Benjamin Räthlein

Results 46 comments of Benjamin Räthlein

@AAzzam91 Hey, I think it would be best if you created a new issue. The one you linked is resolved in Streamlit 1.38: ```python import streamlit as st st.session_state['test'] =...

Cool, I wasnt aware of that. Do you know whether he has plans to merge it back to the original repo someday? On Wed, Jun 29, 2016 at 5:49 AM,...

Hey, yeah it should be possible to use the AIML files for Alice. However, not all tags are supported yet. Unfortuneatly, I don't have a demo website, but actually this...

Hey @SiddhantSadangi , [the docs state](https://docs.streamlit.io/develop/api-reference/custom-components/st.components.v1.html) to import and use it like this ```python import streamlit as st import streamlit.components.v1 as components components.html("example") ``` This works for me in version...

You are welcome 🙂 I have also investigated a little bit why this changed and it seems to be that this should never have been possible, and was made transiently...

@SiddhantSadangi We have just merged a PR to add this way of importing back. We do not advocate it as the other way feels cleaner, but if you are curious...

Hey @mzientek, according to our [concept docs for fragements](https://docs.streamlit.io/develop/concepts/architecture/fragments) in the "Limitations and unsupported behavior" section, we unfortunately right now do not allow nesting fragments inside each other. Since dialog...

@yanivkrol Thanks for opening the issue! I got it to clear the cache when you pass the instance to the `clear` function like this: `test.print_random.clear(test, 1)` Full example ```python import...

@Socvest I believe the way how this should work would be like the following: ```python from functools import partial keys = ["one_", "two_", ...] for key in keys: custom_component(value=list_of_dicts, on_change=partial(onChangeFunction,...

@Socvest This sounds like its not related to the new API addition and whether we pass through `args` or not, am I getting this right? I am trying to understand...