ldhldh commited on
Commit
821de99
Β·
1 Parent(s): 4b7cafe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,6 +13,7 @@ from langchain.retrievers import ContextualCompressionRetriever
13
  from langchain.chains import RetrievalQA
14
  from langchain.vectorstores import FAISS
15
  from langchain.embeddings import HuggingFaceEmbeddings
 
16
 
17
  torch_device = "cuda" if torch.cuda.is_available() else "cpu"
18
  print("Running on device:", torch_device)
@@ -85,7 +86,6 @@ def gen(x, id, customer_data):
85
  question = "{question}"
86
  customer_data_newline = customer_data.replace(",","\n")
87
 
88
- from langchain.prompts import PromptTemplate
89
  prompt_template = f"""당신은 λ³΄ν—˜ μƒλ‹΄μ›μž…λ‹ˆλ‹€. μ•„λž˜μ— 질문과 κ΄€λ ¨λœ μ•½κ΄€ 정보, 응닡 지침과 고객의 λ³΄ν—˜ κ°€μž… 정보, 고객과의 상담기둝이 μ£Όμ–΄μ§‘λ‹ˆλ‹€. μš”μ²­μ„ 적절히 μ™„λ£Œν•˜λŠ” 응닡을 μž‘μ„±ν•˜μ„Έμš”.
90
 
91
  {context}
@@ -126,7 +126,7 @@ def gen(x, id, customer_data):
126
  )
127
  query=f"λ‚˜λŠ” ν˜„μž¬ {customer_data}만 κ°€μž…ν•œ 상황이야. {x}"
128
  response = qa({"query":query})
129
- output_str = response.split("###")[0].split("\u200b")[0]
130
  history[index] += f"고객:{x}\n상담원:{output_str}\n"
131
  return output_str
132
  def reset_textbox():
 
13
  from langchain.chains import RetrievalQA
14
  from langchain.vectorstores import FAISS
15
  from langchain.embeddings import HuggingFaceEmbeddings
16
+ from langchain.prompts import PromptTemplate
17
 
18
  torch_device = "cuda" if torch.cuda.is_available() else "cpu"
19
  print("Running on device:", torch_device)
 
86
  question = "{question}"
87
  customer_data_newline = customer_data.replace(",","\n")
88
 
 
89
  prompt_template = f"""당신은 λ³΄ν—˜ μƒλ‹΄μ›μž…λ‹ˆλ‹€. μ•„λž˜μ— 질문과 κ΄€λ ¨λœ μ•½κ΄€ 정보, 응닡 지침과 고객의 λ³΄ν—˜ κ°€μž… 정보, 고객과의 상담기둝이 μ£Όμ–΄μ§‘λ‹ˆλ‹€. μš”μ²­μ„ 적절히 μ™„λ£Œν•˜λŠ” 응닡을 μž‘μ„±ν•˜μ„Έμš”.
90
 
91
  {context}
 
126
  )
127
  query=f"λ‚˜λŠ” ν˜„μž¬ {customer_data}만 κ°€μž…ν•œ 상황이야. {x}"
128
  response = qa({"query":query})
129
+ output_str = response['result'].split("###")[0].split("\u200b")[0]
130
  history[index] += f"고객:{x}\n상담원:{output_str}\n"
131
  return output_str
132
  def reset_textbox():