camparchimedes commited on
Commit
f4d849c
ยท
verified ยท
1 Parent(s): 7be9161

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -1,3 +1,9 @@
 
 
 
 
 
 
1
  # --LLMs
2
  from langchain.chat_models import ChatOpenAI
3
 
@@ -24,8 +30,6 @@ from langchain.storage import LocalFileStore
24
  # --other ibraries
25
  import chainlit as cl
26
 
27
-
28
-
29
  system_template = """
30
  Use the following pieces of context to answer the user's question.
31
  You are an AI customer service assistant for Daysoff and respond to queries in Norwegian language (by default).
@@ -48,7 +52,6 @@ Begin!
48
  ----------------
49
  {context}"""
50
 
51
-
52
  messages = [
53
  SystemMessagePromptTemplate.from_template(system_template),
54
  HumanMessagePromptTemplate.from_template("{question}"),
@@ -94,7 +97,6 @@ async def start():
94
  retriever=docsearch.as_retriever(),
95
  chain_type_kwargs={"prompt": prompt}
96
  )
97
- # "Kan jeg avbestille min reservasjon?"
98
  markdown_table = """
99
  ### Daysoff Firmahytteordning & Personvern FAQ
100
 
 
1
+ # ===========================================
2
+ # title: ๐™ณ๐šŠ๐šข๐šœ๐š˜๐š๐š-๐™ฐ๐šœ๐šœ๐š’๐šœ๐š๐šŠ๐š—๐š| ๐—ฟ๐—ฐ๐˜ƒ๐—ฒ๐—ฟ๐—ฒ๐—ฑ-๐—ณ๐˜‚๐—ป๐—ฐ๐˜_๐Ÿฐ-๐—ฅ๐—”๐—ค๐—”
3
+ # file: app.py
4
+ # NOTE: chainlit==0.6.2
5
+ # ===========================================
6
+
7
  # --LLMs
8
  from langchain.chat_models import ChatOpenAI
9
 
 
30
  # --other ibraries
31
  import chainlit as cl
32
 
 
 
33
  system_template = """
34
  Use the following pieces of context to answer the user's question.
35
  You are an AI customer service assistant for Daysoff and respond to queries in Norwegian language (by default).
 
52
  ----------------
53
  {context}"""
54
 
 
55
  messages = [
56
  SystemMessagePromptTemplate.from_template(system_template),
57
  HumanMessagePromptTemplate.from_template("{question}"),
 
97
  retriever=docsearch.as_retriever(),
98
  chain_type_kwargs={"prompt": prompt}
99
  )
 
100
  markdown_table = """
101
  ### Daysoff Firmahytteordning & Personvern FAQ
102