### Import Section ### | |
""" | |
IMPORTS HERE | |
""" | |
### Global Section ### | |
""" | |
GLOBAL CODE HERE | |
""" | |
### On Chat Start (Session Start) Section ### | |
async def on_chat_start(): | |
""" SESSION SPECIFIC CODE HERE """ | |
### Rename Chains ### | |
def rename(orig_author: str): | |
""" RENAME CODE HERE """ | |
### On Message Section ### | |
async def main(message: cl.Message): | |
""" | |
MESSAGE CODE HERE | |
""" |