chainlit icon indicating copy to clipboard operation
chainlit copied to clipboard

Starters not being displayed

Open vp-code opened this issue 1 month ago • 2 comments
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.

vp-code avatar Oct 17 '25 19:10 vp-code