ShiwenNi commited on
Commit
2f9b13c
1 Parent(s): 04fbbd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -76,8 +76,8 @@ class Reviewer:
76
  text_token = len(self.encoding.encode(text))
77
  except:
78
  text_token = 10000
79
- input_text_index = int(len(text)*(self.max_token_num-review_prompt_token)/(text_token+1)) - 2000
80
- input_text = "This is the paper for your review:" + text[:input_text_index]
81
  messages=[
82
  {"role": "system", "content": "You are a professional reviewer. Now I will give you a paper. You need to give a complete review opinion according to the following requirements and format:"+ self.review_format + "Be sure to use {} answers".format(self.language)} ,
83
  {"role": "user", "content": input_text + " Translate the output into {}.".format(self.language)},
 
76
  text_token = len(self.encoding.encode(text))
77
  except:
78
  text_token = 10000
79
+ input_text_index = int(len(text)*(self.max_token_num-review_prompt_token)/(text_token+1))
80
+ input_text = "This is the paper for your review:" + text[:12000]
81
  messages=[
82
  {"role": "system", "content": "You are a professional reviewer. Now I will give you a paper. You need to give a complete review opinion according to the following requirements and format:"+ self.review_format + "Be sure to use {} answers".format(self.language)} ,
83
  {"role": "user", "content": input_text + " Translate the output into {}.".format(self.language)},