Bostoncake commited on
Commit
6eef56f
·
1 Parent(s): b921714

Minor fixes.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -44,7 +44,7 @@ class Reviewer:
44
  input_text = "This is the paper you are asked to read:" + text[:input_text_index]
45
  input_text = input_text + "The question from your student is: " + self.question
46
  messages=[
47
- {"role": "system", "content": "You are a professional researcher in the field of "+self.research_field+". You are the mentor of a student who is new to this field. Now I will give you a paper. You need to help your student to read this paper by instructing him to read the important sections in this paper and answer his questions towards these sections. Please answer in {}.".format(self.language),
48
  {"role": "user", "content": input_text},
49
  ]
50
 
 
44
  input_text = "This is the paper you are asked to read:" + text[:input_text_index]
45
  input_text = input_text + "The question from your student is: " + self.question
46
  messages=[
47
+ {"role": "system", "content": "You are a professional researcher in the field of "+self.research_field+". You are the mentor of a student who is new to this field. Now I will give you a paper. You need to help your student to read this paper by instructing him to read the important sections in this paper and answer his questions towards these sections. Please answer in {}.".format(self.language)},
48
  {"role": "user", "content": input_text},
49
  ]
50