Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -3,11 +3,11 @@ from extract_app import extract_information
|
|
| 3 |
|
| 4 |
|
| 5 |
@cl.on_chat_start
|
| 6 |
-
|
| 7 |
"""
|
| 8 |
This is called when the Chainlit chat is started!
|
| 9 |
"""
|
| 10 |
-
|
| 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):
|