Pankaj Mathur commited on
Commit
6b17915
1 Parent(s): c124536

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -85,7 +85,7 @@ def generate_text(system, instruction, input=None):
85
  # same prompt as provided by Orca Research Paper
86
  system = 'You are an AI assistant. User will you give you a task. Your goal is to complete the task as faithfully as you can. While performing the task think step-by-step and justify your steps.'
87
  instruction = 'Use the given data to calculate the median.'
88
- input = '[7, 3, 8, 2, 10]'
89
  generate_text(system, instruction, input)
90
 
91
  ```
 
85
  # same prompt as provided by Orca Research Paper
86
  system = 'You are an AI assistant. User will you give you a task. Your goal is to complete the task as faithfully as you can. While performing the task think step-by-step and justify your steps.'
87
  instruction = 'Use the given data to calculate the median.'
88
+ input = '[5,2,3,4,1]'
89
  generate_text(system, instruction, input)
90
 
91
  ```