Philipp Rudiger
Philipp Rudiger
Very, very cool. Excited to see where this goes.
Sorry for the delay in reviewing this. The functionality here looks great but now that I'm actually playing around with this I'm finding it pretty confusing. It's not helped by...
I think the main thing I'm struggling with is that I don't quite understand the point of the `ChatSteps` component. It's a very light wrapper around a Column and since...
Okay, I've made some changes here: 1. `ChatSteps` no longer exists 2. Renamed the `append_step` method to `ChatFeed.add_step` 3. The logic for appending steps is largely implicit now, i.e. the...
@ahuang11 Could you file an issue upstream with Bokeh and then close this one?
Sorry for the long, long delay here. This has now been fixed in https://github.com/holoviz/panel/pull/7058
> Use batch_call_watchers to update multiple params on separate objects simultaneously. Afaik this does nothing, batching only works at the level of a parameterized never across multiple objects.
> ### Refreshing layout objects This should mention using the APIs on the Column itself, e.g.: ```python # instead of col.objects[0] = 'Foo' # do col[0] = 'Foo' ```
Thanks for the tests! They look good, could you approve and merge?
The easiest way to fix this is by casting the value to `str` yourself: ```python plotly_figure.add_vline( x=str(pd.Timestamp('2022-05-11 9:00:00', tz=UTC)), line_dash="dash", line_color="green", ) ```