ShiwenNi commited on
Commit
e08a9ec
1 Parent(s): e0cbd02

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ class Reviewer:
39
  openai.api_key = self.api # 读取api
40
  review_prompt_token = 1000
41
  text_token = len(self.encoding.encode(text))
42
- input_text_index = int(len(text)*(self.max_token_num-review_prompt_token)/text_token)
43
  input_text = "This is the paper for your review:" + text[:input_text_index]
44
  messages=[
45
  {"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 +" Must be output in {}.".format(self.language)},
 
39
  openai.api_key = self.api # 读取api
40
  review_prompt_token = 1000
41
  text_token = len(self.encoding.encode(text))
42
+ input_text_index = int(len(text)*(self.max_token_num-review_prompt_token)/(text_token+1))
43
  input_text = "This is the paper for your review:" + text[:input_text_index]
44
  messages=[
45
  {"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 +" Must be output in {}.".format(self.language)},