Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -556,15 +556,15 @@ chain_neo4j = (
|
|
556 |
|
557 |
|
558 |
|
559 |
-
#
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
# import traceback
|
569 |
|
570 |
# def generate_answer(message, choice, retrieval_mode, selected_model):
|
@@ -690,15 +690,15 @@ chain_neo4j = (
|
|
690 |
# history.append([response, None])
|
691 |
|
692 |
|
693 |
-
phi_custom_template = """
|
694 |
-
<|system|>
|
695 |
-
You are a helpful assistant who provides clear, organized, and conversational responses.<|end|>
|
696 |
-
<|user|>
|
697 |
-
{context}
|
698 |
-
Question: {question}<|end|>
|
699 |
-
<|assistant|>
|
700 |
-
Sure! Here's the information you requested:
|
701 |
-
"""
|
702 |
import re
|
703 |
|
704 |
def clean_response(response_text):
|
|
|
556 |
|
557 |
|
558 |
|
559 |
+
# Define the custom template for Phi-3.5
|
560 |
+
phi_custom_template = """
|
561 |
+
<|system|>
|
562 |
+
You are a helpful assistant.<|end|>
|
563 |
+
<|user|>
|
564 |
+
{context}
|
565 |
+
{question}<|end|>
|
566 |
+
<|assistant|>
|
567 |
+
"""
|
568 |
# import traceback
|
569 |
|
570 |
# def generate_answer(message, choice, retrieval_mode, selected_model):
|
|
|
690 |
# history.append([response, None])
|
691 |
|
692 |
|
693 |
+
# phi_custom_template = """
|
694 |
+
# <|system|>
|
695 |
+
# You are a helpful assistant who provides clear, organized, and conversational responses.<|end|>
|
696 |
+
# <|user|>
|
697 |
+
# {context}
|
698 |
+
# Question: {question}<|end|>
|
699 |
+
# <|assistant|>
|
700 |
+
# Sure! Here's the information you requested:
|
701 |
+
# """
|
702 |
import re
|
703 |
|
704 |
def clean_response(response_text):
|