Update README.md
Browse files
README.md
CHANGED
@@ -67,7 +67,7 @@ system = "You are an adaptive and versatile AI assistant, ready to help with var
|
|
67 |
insaan = "Hey HelpingAI, how's it going?"
|
68 |
|
69 |
# Now we combine system and user messages into the template, like adding sprinkles to our conversation cupcake
|
70 |
-
prompt = prompt.format(system=system,
|
71 |
|
72 |
# Time to chat! We'll use the tokenizer to translate our text into a language the model understands
|
73 |
inputs = tokenizer(prompt, return_tensors="pt", return_attention_mask=False).to("cuda")
|
|
|
67 |
insaan = "Hey HelpingAI, how's it going?"
|
68 |
|
69 |
# Now we combine system and user messages into the template, like adding sprinkles to our conversation cupcake
|
70 |
+
prompt = prompt.format(system=system, insaan=insaan)
|
71 |
|
72 |
# Time to chat! We'll use the tokenizer to translate our text into a language the model understands
|
73 |
inputs = tokenizer(prompt, return_tensors="pt", return_attention_mask=False).to("cuda")
|