import chainlit as cl from chainlit.input_widget import Tags @cl.on_chat_start async def start(): settings = await cl.ChatSettings( [ Tags(id="StopSequence", label="OpenAI - StopSequence", initial=["Answer:"]), ] ).send() value = settings["StopSequence"]
Was this page helpful?