-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery_data.py
48 lines (37 loc) · 1.91 KB
/
query_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from langchain_community.vectorstores import Chroma
from langchain_openai import OpenAIEmbeddings, ChatOpenAI
from langchain.prompts import ChatPromptTemplate
CHROMA_PATH = "chroma"
OPENAI_API_KEY = 'OPENAI_API_KEY'
PROMPT_TEMPLATE = """
Soruyu yalnızca aşağıdaki bağlama dayanarak cevapla:
{context}
Yukarıdaki bağlama dayanarak soruyu cevapla: {question}
"""
def main(query_text):
# Prepare the DB.
embedding_function = OpenAIEmbeddings(openai_api_key=OPENAI_API_KEY)
db = Chroma(persist_directory=CHROMA_PATH, embedding_function=embedding_function)
# Search the DB.
results = db.similarity_search_with_relevance_scores(query_text, k=3)
if len(results) == 0 or results[0][1] < 0.7:
print(f"""Mesajınızı anlayamadım, size yardımcı olabilmemiz için 444 88 88 Telefon Bankacılığımızdan bize ulaşabilir ya da “Müşteri Temsilcisi“ yazarak canlı destek müşteri temsilcimizle görüşebilirsiniz.""")
return
context_text = "\n\n---\n\n".join([doc.page_content for doc, _score in results])
prompt_template = ChatPromptTemplate.from_template(PROMPT_TEMPLATE)
prompt = prompt_template.format(context=context_text, question=query_text)
#print(prompt)
model = ChatOpenAI(openai_api_key=OPENAI_API_KEY)
response_text = model.invoke(prompt)
#response_text = model.predict(prompt)
print(response_text.content)
#sources = [doc.metadata.get("source", None) for doc, _score in results]
#formatted_response = f"Response: {response_text}\nSources: {sources}"
#print(formatted_response)
if __name__ == "__main__":
# Directly passing the query text for demonstration purposes.
#query_text = "Fibabanka kim tarafından ve ne zaman kurulmuştur?"
#query_text = "Kartımı kaybettim"
#query_text = "Hangi hizmetleri sunabiliyorsun?"
query_text = "Bireysel ihtiyaç kredisi nedir? Daha detaylı bahsedebilir misin"
main(query_text)