Abhaykoul commited on
Commit
d71cdda
·
verified ·
1 Parent(s): b75e3bf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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, user=user)
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")