cmagganas commited on
Commit
3a2f547
1 Parent(s): 803f2de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,11 +3,11 @@ from extract_app import extract_information
3
 
4
 
5
  @cl.on_chat_start
6
- async def start():
7
  """
8
  This is called when the Chainlit chat is started!
9
  """
10
- await cl.Message("Welcome to the information extraction chat!")
11
 
12
  @cl.on_message
13
  def main(message: cl.Message):
 
3
 
4
 
5
  @cl.on_chat_start
6
+ def start():
7
  """
8
  This is called when the Chainlit chat is started!
9
  """
10
+ cl.Message("Welcome to the information extraction chat!")
11
 
12
  @cl.on_message
13
  def main(message: cl.Message):