Update utils.py
Browse files
utils.py
CHANGED
@@ -647,7 +647,7 @@ def rag_chain_simpel( prompt, retriever):
|
|
647 |
most_relevant_docs = [extracted_docs[i] for i in most_relevant_doc_indices]
|
648 |
|
649 |
#Kombiniere die Inhalte aller relevanten Dokumente
|
650 |
-
combined_content = " ".join([doc["content"] for doc in most_relevant_docs])
|
651 |
|
652 |
# Erstelle das Ergebnis-Dictionary
|
653 |
result = {
|
@@ -694,6 +694,7 @@ def extract_document_info(documents):
|
|
694 |
#Prompts mit History erzeugen für verschiednee Modelle
|
695 |
###################################################
|
696 |
#Funktion, die einen Prompt mit der history zusammen erzeugt - allgemein
|
|
|
697 |
def generate_prompt_with_history(text, history, max_length=4048):
|
698 |
#prompt = "The following is a conversation between a human and an AI assistant named Baize (named after a mythical creature in Chinese folklore). Baize is an open-source AI assistant developed by UCSD and Sun Yat-Sen University. The human and the AI assistant take turns chatting. Human statements start with [|Human|] and AI assistant statements start with [|AI|]. The AI assistant always provides responses in as much detail as possible, and in Markdown format. The AI assistant always declines to engage with topics, questions and instructions related to unethical, controversial, or sensitive issues. Complete the transcript in exactly that format.\n[|Human|]Hello!\n[|AI|]Hi!"
|
699 |
#prompt = "Das folgende ist eine Unterhaltung in deutsch zwischen einem Menschen und einem KI-Assistenten, der Baize genannt wird. Baize ist ein open-source KI-Assistent, der von UCSD entwickelt wurde. Der Mensch und der KI-Assistent chatten abwechselnd miteinander in deutsch. Die Antworten des KI Assistenten sind immer so ausführlich wie möglich und in Markdown Schreibweise und in deutscher Sprache. Wenn nötig übersetzt er sie ins Deutsche. Die Antworten des KI-Assistenten vermeiden Themen und Antworten zu unethischen, kontroversen oder sensiblen Themen. Die Antworten sind immer sehr höflich formuliert..\n[|Human|]Hallo!\n[|AI|]Hi!"
|
@@ -709,7 +710,7 @@ def generate_prompt_with_history(text, history, max_length=4048):
|
|
709 |
return prompt+history_text
|
710 |
else:
|
711 |
return None
|
712 |
-
|
713 |
|
714 |
|
715 |
##########################################
|
|
|
647 |
most_relevant_docs = [extracted_docs[i] for i in most_relevant_doc_indices]
|
648 |
|
649 |
#Kombiniere die Inhalte aller relevanten Dokumente
|
650 |
+
#combined_content = " ".join([doc["content"] for doc in most_relevant_docs])
|
651 |
|
652 |
# Erstelle das Ergebnis-Dictionary
|
653 |
result = {
|
|
|
694 |
#Prompts mit History erzeugen für verschiednee Modelle
|
695 |
###################################################
|
696 |
#Funktion, die einen Prompt mit der history zusammen erzeugt - allgemein
|
697 |
+
"""
|
698 |
def generate_prompt_with_history(text, history, max_length=4048):
|
699 |
#prompt = "The following is a conversation between a human and an AI assistant named Baize (named after a mythical creature in Chinese folklore). Baize is an open-source AI assistant developed by UCSD and Sun Yat-Sen University. The human and the AI assistant take turns chatting. Human statements start with [|Human|] and AI assistant statements start with [|AI|]. The AI assistant always provides responses in as much detail as possible, and in Markdown format. The AI assistant always declines to engage with topics, questions and instructions related to unethical, controversial, or sensitive issues. Complete the transcript in exactly that format.\n[|Human|]Hello!\n[|AI|]Hi!"
|
700 |
#prompt = "Das folgende ist eine Unterhaltung in deutsch zwischen einem Menschen und einem KI-Assistenten, der Baize genannt wird. Baize ist ein open-source KI-Assistent, der von UCSD entwickelt wurde. Der Mensch und der KI-Assistent chatten abwechselnd miteinander in deutsch. Die Antworten des KI Assistenten sind immer so ausführlich wie möglich und in Markdown Schreibweise und in deutscher Sprache. Wenn nötig übersetzt er sie ins Deutsche. Die Antworten des KI-Assistenten vermeiden Themen und Antworten zu unethischen, kontroversen oder sensiblen Themen. Die Antworten sind immer sehr höflich formuliert..\n[|Human|]Hallo!\n[|AI|]Hi!"
|
|
|
710 |
return prompt+history_text
|
711 |
else:
|
712 |
return None
|
713 |
+
"""
|
714 |
|
715 |
|
716 |
##########################################
|