Spaces:
Runtime error
Runtime error
gorkemgoknar
commited on
Commit
•
5aaaff7
1
Parent(s):
fe6c2bc
Update app.py
Browse files
app.py
CHANGED
@@ -169,7 +169,7 @@ llm_zephyr = Llama(model_path=zephyr_model_path,n_gpu_layers=GPU_LAYERS,max_new_
|
|
169 |
|
170 |
|
171 |
# Mistral formatter
|
172 |
-
def format_prompt_mistral(message, history, system_message=system_message
|
173 |
prompt = (
|
174 |
"<s>[INST]" + system_message + "[/INST]" + system_understand_message + "</s>"
|
175 |
)
|
@@ -189,7 +189,7 @@ def format_prompt_mistral(message, history, system_message=system_message,system
|
|
189 |
# Ah, me hearty matey! But yer question be a puzzler! A human cannot eat a helicopter in one sitting, as helicopters are not edible. They be made of metal, plastic, and other materials, not food!
|
190 |
|
191 |
# Zephyr formatter
|
192 |
-
def format_prompt_zephyr(message, history, system_message=system_message
|
193 |
prompt = (
|
194 |
"<|system|>\n" + system_message + "\n</s>"
|
195 |
)
|
|
|
169 |
|
170 |
|
171 |
# Mistral formatter
|
172 |
+
def format_prompt_mistral(message, history, system_message=system_message):
|
173 |
prompt = (
|
174 |
"<s>[INST]" + system_message + "[/INST]" + system_understand_message + "</s>"
|
175 |
)
|
|
|
189 |
# Ah, me hearty matey! But yer question be a puzzler! A human cannot eat a helicopter in one sitting, as helicopters are not edible. They be made of metal, plastic, and other materials, not food!
|
190 |
|
191 |
# Zephyr formatter
|
192 |
+
def format_prompt_zephyr(message, history, system_message=system_message):
|
193 |
prompt = (
|
194 |
"<|system|>\n" + system_message + "\n</s>"
|
195 |
)
|