qingxu99 commited on
Commit
6595ab8
1 Parent(s): d1efbd2

修正计数错误

Browse files
crazy_functions/谷歌检索小助手.py CHANGED
@@ -70,6 +70,7 @@ def 谷歌检索小助手(txt, llm_kwargs, plugin_kwargs, chatbot, history, syst
70
  # 尝试导入依赖,如果缺少依赖,则给出安装建议
71
  try:
72
  import arxiv
 
73
  from bs4 import BeautifulSoup
74
  except:
75
  report_execption(chatbot, history,
@@ -80,10 +81,9 @@ def 谷歌检索小助手(txt, llm_kwargs, plugin_kwargs, chatbot, history, syst
80
 
81
  # 清空历史,以免输入溢出
82
  history = []
83
-
84
  meta_paper_info_list = yield from get_meta_information(txt, chatbot, history)
85
- batchsize = 7
86
- for batch in range(len(meta_paper_info_list)//batchsize):
87
  if len(meta_paper_info_list[:batchsize]) > 0:
88
  i_say = "下面是一些学术文献的数据,提取出以下内容:" + \
89
  "1、英文题目;2、中文题目翻译;3、作者;4、arxiv公开(is_paper_in_arxiv);4、引用数量(cite);5、中文摘要翻译。" + \
 
70
  # 尝试导入依赖,如果缺少依赖,则给出安装建议
71
  try:
72
  import arxiv
73
+ import math
74
  from bs4 import BeautifulSoup
75
  except:
76
  report_execption(chatbot, history,
 
81
 
82
  # 清空历史,以免输入溢出
83
  history = []
 
84
  meta_paper_info_list = yield from get_meta_information(txt, chatbot, history)
85
+ batchsize = 5
86
+ for batch in range(math.ceil(len(meta_paper_info_list)/batchsize)):
87
  if len(meta_paper_info_list[:batchsize]) > 0:
88
  i_say = "下面是一些学术文献的数据,提取出以下内容:" + \
89
  "1、英文题目;2、中文题目翻译;3、作者;4、arxiv公开(is_paper_in_arxiv);4、引用数量(cite);5、中文摘要翻译。" + \