Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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():
|