crumb commited on
Commit
d89b10f
1 Parent(s): e655577

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -46,7 +46,7 @@ A function to turn an instruction into a prompt for the model could be written a
46
  def prompt(instruction, input=''):
47
  if input=='':
48
  return f"Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {instruction} ### Response: "
49
- return f"Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {instruction} ### Input: {input} ### Response: "
50
  ```
51
 
52
  Where input would be an input for the model to act on based on the instruction.
 
46
  def prompt(instruction, input=''):
47
  if input=='':
48
  return f"Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {instruction} ### Response: "
49
+ return f"Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request. ### Instruction: {instruction} ### Input: {input} ### Response: "
50
  ```
51
 
52
  Where input would be an input for the model to act on based on the instruction.