Update app.py
Browse files
app.py
CHANGED
@@ -96,7 +96,8 @@ async def start():
|
|
96 |
)
|
97 |
|
98 |
# --|โโโ> welcome
|
99 |
-
|
|
|
100 |
|
101 |
# --|โโโ> FAQ examples
|
102 |
faq_content = """### Daysoff Firmahytteordning & Personvern FAQ
|
@@ -112,7 +113,8 @@ async def start():
|
|
112 |
"""
|
113 |
|
114 |
# --|โโโ> Chainlit text element
|
115 |
-
|
|
|
116 |
|
117 |
cl.user_session.set("chain", chain)
|
118 |
|
|
|
96 |
)
|
97 |
|
98 |
# --|โโโ> welcome
|
99 |
+
msg = cl.Message(content=f"Her er noen eksempler pรฅ spรธrsmรฅl jeg kan svare pรฅ: ๐๐ผ")
|
100 |
+
await msg.send()
|
101 |
|
102 |
# --|โโโ> FAQ examples
|
103 |
faq_content = """### Daysoff Firmahytteordning & Personvern FAQ
|
|
|
113 |
"""
|
114 |
|
115 |
# --|โโโ> Chainlit text element
|
116 |
+
msg = cl.Text(content=faq_content)
|
117 |
+
await msg.send()
|
118 |
|
119 |
cl.user_session.set("chain", chain)
|
120 |
|