Update app/app.py
Browse files- app/app.py +3 -2
app/app.py
CHANGED
@@ -49,8 +49,9 @@ async def chat_profile():
|
|
49 |
|
50 |
@on_chat_start
|
51 |
async def init():
|
52 |
-
conversation_id = str(uuid.uuid4())
|
53 |
-
cl.user_session.set("id", conversation_id)
|
|
|
54 |
|
55 |
# @traceable(run_type="chain")
|
56 |
@cl.on_message
|
|
|
49 |
|
50 |
@on_chat_start
|
51 |
async def init():
|
52 |
+
# conversation_id = str(uuid.uuid4())
|
53 |
+
# cl.user_session.set("id", conversation_id)
|
54 |
+
print("A new chat session has started!")
|
55 |
|
56 |
# @traceable(run_type="chain")
|
57 |
@cl.on_message
|