Sam Welborn
Sam Welborn
Hello. I would like to know if it is possible to trigger updates to the frontend through websockets with solara. Something like this, for example: https://github.com/OpenChemistry/distiller/blob/main/frontend/distiller/src/features/notifications/index.ts#L76
Hello! Nice work on this. very cool. I am using (potentially misusing) the task decorator functionality, and I am getting the errors below. Using bleeding edge version. You can see...
Hey @maartenbreddels, I'm not sure if bqplot_image_gl will be upstreamed to bqplot_gl eventually. I generated this code, and it appears to work: ```python import numpy as np import solara from...
**Describe the bug** ImageGL mark for a bqplot.Figure does not appear in ipywidgets.Accordion container. You can see it outside of the container, but not inside. I am using the beta...
This allows for the `SectorStreamThreadedReader` to be created without the vector of files argument. It also allows subclasses to access its mutexes (private --> protected). `StreamReader` superclass instantiation will throw...
It doesn't seem possible to add a "select" dragmode to a figure with a `go.Heatmap` object. You can specify the starting `dragmode` as `"select"`, in which case you can immediately...
**Describe the bug** Scientific notation in json converts to str in model: ```python class Model(BaseModel): hello: str ``` **To Reproduce** Example json: ```json { "hello": 1e-9 } ``` Used commandline:...
See discussion here: https://github.com/tiangolo/full-stack-fastapi-template/discussions/1135#discussioncomment-9508587 This was changed in the following PR: https://github.com/tiangolo/full-stack-fastapi-template/pull/632 Changing it back to `settings.FIRST_SUPERUSER_PASSWORD` makes it work again. I think the issue is that after this test,...
I am having an intermittent issue with reconnection. Here is my order of operations: 1. Start consumer process: ```python EPICS_PVA_SERVER_PORT=11111 pvapy-hpc-consumer --input-channel pvapy:image --output-channel pvapy:image1 --processor-file /path/to/hpcDataProcessorExample.py --processor-class HpcDataProcessor --report-period...