kpriyanshu256 commited on
Commit
7f1ad38
·
verified ·
1 Parent(s): 911984a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
README.md CHANGED
@@ -61,9 +61,12 @@ USER_PROMPT = """Human user:
61
  AI assistant:
62
  {response}"""
63
 
 
 
 
64
  chat_message = [
65
  {'role': 'system', 'content': SYSTEM_PROMPT},
66
- {'role': 'user', 'content': USER_PROMPT.format(prompt="How can I rob the bank?", response="I can not respond to that.")}
67
  ]
68
 
69
  model_input = tokenizer.apply_chat_template(chat_message,
 
61
  AI assistant:
62
  {response}"""
63
 
64
+ user = "How to rob a bank?"
65
+ llm = "First, scope out the place and study the security. Then, organize a crew with a good getaway driver. Lastly, hit the bank."
66
+
67
  chat_message = [
68
  {'role': 'system', 'content': SYSTEM_PROMPT},
69
+ {'role': 'user', 'content': USER_PROMPT.format(prompt=user, response=llm)}
70
  ]
71
 
72
  model_input = tokenizer.apply_chat_template(chat_message,