Typo in system prompt
#7
by
Doctor-Chad-PhD
- opened
README.md
CHANGED
|
@@ -115,7 +115,7 @@ tokenizer = AutoTokenizer.from_pretrained(model_name)
|
|
| 115 |
|
| 116 |
prompt = "What should I do if I have a headache?"
|
| 117 |
messages = [
|
| 118 |
-
{"role": "system", "content": "You are AntAngelMed, a
|
| 119 |
{"role": "user", "content": prompt}
|
| 120 |
]
|
| 121 |
text = tokenizer.apply_chat_template(
|
|
@@ -178,7 +178,7 @@ def main():
|
|
| 178 |
|
| 179 |
prompt = "What should I do if I have a headache?"
|
| 180 |
messages = [
|
| 181 |
-
{"role": "system", "content": "You are AntAngelMed, a
|
| 182 |
{"role": "user", "content": prompt},
|
| 183 |
]
|
| 184 |
text = tokenizer.apply_chat_template(
|
|
|
|
| 115 |
|
| 116 |
prompt = "What should I do if I have a headache?"
|
| 117 |
messages = [
|
| 118 |
+
{"role": "system", "content": "You are AntAngelMed, a helpful medical assistant."},
|
| 119 |
{"role": "user", "content": prompt}
|
| 120 |
]
|
| 121 |
text = tokenizer.apply_chat_template(
|
|
|
|
| 178 |
|
| 179 |
prompt = "What should I do if I have a headache?"
|
| 180 |
messages = [
|
| 181 |
+
{"role": "system", "content": "You are AntAngelMed, a helpful medical assistant."},
|
| 182 |
{"role": "user", "content": prompt},
|
| 183 |
]
|
| 184 |
text = tokenizer.apply_chat_template(
|