Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,11 @@ client = InferenceClient(
|
|
9 |
def format_prompt(message, history):
|
10 |
prompt = "<s>"
|
11 |
for user_prompt, bot_response in history:
|
|
|
|
|
|
|
12 |
prompt += f"[INST] {user_prompt} [/INST]"
|
13 |
-
prompt += f" {bot_response}</s> "
|
14 |
prompt += f"[INST] {message} [/INST]"
|
15 |
return prompt
|
16 |
|
|
|
9 |
def format_prompt(message, history):
|
10 |
prompt = "<s>"
|
11 |
for user_prompt, bot_response in history:
|
12 |
+
#prompt += f"[INST] {user_prompt} [/INST]"
|
13 |
+
#prompt += f" {bot_response}</s> "
|
14 |
+
#prompt += f"[INST] You are a helpful assistant who restates the exact prompt before each response. {user_prompt} [/INST]"
|
15 |
prompt += f"[INST] {user_prompt} [/INST]"
|
16 |
+
prompt += f" The instruction is: 'Instruction'. The answer is: {bot_response}</s> "
|
17 |
prompt += f"[INST] {message} [/INST]"
|
18 |
return prompt
|
19 |
|