chainlit
chainlit copied to clipboard
Starters not being displayed
trafficstars
Chainlit version 2.8.3 I suspect an issue with logos. Brand logos (logo_dark.png and logo_light.png) are not displayed. However, favicon.png and the avatar logo for the assistant are being displayed.
I have cleared my browser cache dozens of times, tried it on both chrome and firfefox.
Code
async def set_starters():
print("Starter Trouble")
return [
cl.Starter(
label="Get Stock Metrics",
message="Can you get some strock metrics?",
icon="/public/logo.png",
),
cl.Starter(
label="Explore ETFs",
message="I would like information on ETFs please",
icon="/public/etf_starter.png",
),
]
Any hints would be deeply appreciated.