XThomasBU commited on
Commit
d948fc1
·
verified ·
1 Parent(s): 9eff5be

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -5,8 +5,11 @@ import chainlit as cl
5
  from chain import Chain
6
 
7
 
 
8
  @cl.on_chat_start
9
  async def start_chat():
 
 
10
  chain = Chain(None)
11
  await chain.text("I will count to 5. How many concurrent times should I count?")
12
 
 
5
  from chain import Chain
6
 
7
 
8
+
9
  @cl.on_chat_start
10
  async def start_chat():
11
+ app_user = cl.user_session.get("user")
12
+ print(app_user)
13
  chain = Chain(None)
14
  await chain.text("I will count to 5. How many concurrent times should I count?")
15