Would it be possible to build a chat interface in Solara which had up/down vote options for the chat

Would it be possible to build a chat interface in Solara which had up/down vote options for the chat?
6 Replies
no_dice
no_dice3w ago
I can't seem to find that specifically in the docs but its possible I'm still missing it.
Ahmed Moubtahij
What would you use for web deployment of a solara app? I'm considering options like Vercel or Railway
MaartenBreddels
I liked render.com
pecneb
pecneb7d ago
Hey guys! I am pretty new at Solara, how to implement an image zoomer module, where the user can open an image with a popup window and zoom into it?
Jan-Hendrik Müller
Hi there! I just figured out, you can run solara apps with the package manager uv! uvx --with matplotlib solara run demo_solara.py
import solara
from matplotlib.figure import Figure

@solara.component
def Page():
fig = Figure()
ax = fig.subplots()
ax.plot([1, 2, 3], [1, 4, 9])
return solara.FigureMatplotlib(fig)

Page()
import solara
from matplotlib.figure import Figure

@solara.component
def Page():
fig = Figure()
ax = fig.subplots()
ax.plot([1, 2, 3], [1, 4, 9])
return solara.FigureMatplotlib(fig)

Page()
MaartenBreddels
Cool! I was a bit confused at first, but i see it's like npx, if the package name (solara) is also the command line utit, then 🪄
Want results from more Discord servers?
Add your server