W8A1 / app.py
acpotts's picture
initial commit
9de5ca0
raw
history blame
441 Bytes
### Import Section ###
"""
IMPORTS HERE
"""
### Global Section ###
"""
GLOBAL CODE HERE
"""
### On Chat Start (Session Start) Section ###
@cl.on_chat_start
async def on_chat_start():
""" SESSION SPECIFIC CODE HERE """
### Rename Chains ###
@cl.author_rename
def rename(orig_author: str):
""" RENAME CODE HERE """
### On Message Section ###
@cl.on_message
async def main(message: cl.Message):
"""
MESSAGE CODE HERE
"""