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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,7 +76,7 @@ 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))
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)} ,
 
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)} ,